Skip to content

Commit 270f368

Browse files
committed
FUTURE_SEQUANA: Flatten PDL library paths
This change moves all PDL drivers into common source and include directories to alleviate issue with Windows version of GNU Make 4.x maximum command line length limit.
1 parent 801e555 commit 270f368

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+99
-100
lines changed

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M0/ipc_rpc_m0.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "ipc_rpc.h"
2020
#include "rpc_defs.h"
2121
#include "cy_ipc_config.h"
22-
#include "ipc/cy_ipc_pipe.h"
22+
#include "cy_ipc_pipe.h"
2323

2424
#define RPC_GEN RPC_GEN_IMPLEMENTATION
2525
#include "rpc_api.h"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M0/system_psoc63_cm0plus.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121

2222
#if defined(CY_DEVICE_PSOC6ABLE2)
2323
#if !defined(CY_PSOC6ABLE2_REV_0A_SUPPORT_DISABLE)
24-
#include "syslib/cy_syslib.h"
24+
#include "cy_syslib.h"
2525
#endif /* !defined(CY_PSOC6ABLE2_REV_0A_SUPPORT_DISABLE) */
2626
#if !defined(CY_IPC_DEFAULT_CFG_DISABLE)
27-
#include "ipc/cy_ipc_drv.h"
28-
#include "flash/cy_flash.h"
27+
#include "cy_ipc_drv.h"
28+
#include "cy_flash.h"
2929
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
3030
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */
3131

@@ -583,7 +583,7 @@ void Cy_SysResetCM4(void)
583583
* linker configuration files. The following symbols used by the cymcuelftool.
584584
*
585585
*******************************************************************************/
586-
#if defined (__ARMCC_VERSION)
586+
#if defined (__ARMCC_VERSION) && (__ARMCC_VERSION < 6000000)
587587
__asm void Cy_MemorySymbols(void)
588588
{
589589
/* Flash */

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M4/ipc_rpc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "Semaphore.h"
2121
#include "mbed_assert.h"
2222
#include "cy_ipc_config.h"
23-
#include "ipc/cy_ipc_pipe.h"
23+
#include "cy_ipc_pipe.h"
2424
#include <stdarg.h>
2525
#include "platform/SingletonPtr.h"
2626

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M4/system_psoc63_cm4.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include "psoc6_utils.h"
2121

2222
#if defined(CY_DEVICE_PSOC6ABLE2) && !defined(CY_IPC_DEFAULT_CFG_DISABLE)
23-
#include "ipc/cy_ipc_drv.h"
24-
#include "flash/cy_flash.h"
23+
#include "cy_ipc_drv.h"
24+
#include "cy_flash.h"
2525
#endif /* defined(CY_DEVICE_PSOC6ABLE2) && !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
2626

2727

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_CY8C63XX/device/cy_ipc_config.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* SPDX-License-Identifier: Apache-2.0
1313
*******************************************************************************/
1414

15-
#include "ipc/cy_ipc_drv.h"
16-
#include "ipc/cy_ipc_pipe.h"
17-
#include "ipc/cy_ipc_sema.h"
15+
#include "cy_ipc_drv.h"
16+
#include "cy_ipc_pipe.h"
17+
#include "cy_ipc_sema.h"
1818

1919
#include "cy_ipc_config.h"
2020

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/TARGET_FUTURE_SEQUANA/TARGET_FUTURE_SEQUANA_M0/board_config.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717

1818
#include <string.h>
1919
#include "device.h"
20-
#include "gpio/cy_gpio.h"
21-
#include "syslib/cy_syslib.h"
22-
#include "sysclk/cy_sysclk.h"
23-
#include "systick/cy_systick.h"
24-
#include "sysanalog/cy_sysanalog.h"
20+
#include "cy_gpio.h"
21+
#include "cy_syslib.h"
22+
#include "cy_sysclk.h"
23+
#include "cy_systick.h"
24+
#include "cy_sysanalog.h"
2525

2626
#if FEATURE_BLE
2727
#include "ble/cy_ble_clk.h"
2828
#endif // FEATURE_BLE
2929

3030
#define CY_NEED_CYCLOCKSTARTUPERROR 1
31-
#include "syspm/cy_syspm.h"
31+
#include "cy_syspm.h"
3232

3333
#include "psoc6_utils.h"
3434

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ctb/cy_ctb.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_ctb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@
300300
#include <stdbool.h>
301301
#include <stddef.h>
302302
#include "cy_device_headers.h"
303-
#include "syslib/cy_syslib.h"
304-
#include "sysanalog/cy_sysanalog.h"
303+
#include "cy_syslib.h"
304+
#include "cy_sysanalog.h"
305305

306306
#ifndef CY_IP_MXS40PASS_CTB
307307
#error "The CTB driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ctdac/cy_ctdac.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_ctdac.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@
338338
#include <stdbool.h>
339339
#include <stddef.h>
340340
#include "cy_device_headers.h"
341-
#include "syspm/cy_syspm.h"
342-
#include "syslib/cy_syslib.h"
343-
#include "sysclk/cy_sysclk.h"
341+
#include "cy_syspm.h"
342+
#include "cy_syslib.h"
343+
#include "cy_sysclk.h"
344344

345345
#ifndef CY_IP_MXS40PASS_CTDAC
346346
#error "The CTDAC driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/dma/cy_dma.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
#include <stdint.h>
151151
#include <stdbool.h>
152152
#include <stddef.h>
153-
#include "syslib/cy_syslib.h"
153+
#include "cy_syslib.h"
154154
#include "cy_device_headers.h"
155155

156156
#ifndef CY_IP_M4CPUSS_DMA

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/efuse/cy_efuse.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_efuse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
*/
110110

111111
#include "cy_device_headers.h"
112-
#include "syslib/cy_syslib.h"
112+
#include "cy_syslib.h"
113113

114114
/***************************************
115115
* Macro Definitions

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/flash/cy_flash.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_flash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
*/
297297

298298
#include <cy_device_headers.h>
299-
#include "syslib/cy_syslib.h"
299+
#include "cy_syslib.h"
300300

301301
#if defined(__cplusplus)
302302
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/gpio/cy_gpio.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_gpio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
#define CY_GPIO_H
121121

122122
#include <stddef.h>
123-
#include "syslib/cy_syslib.h"
123+
#include "cy_syslib.h"
124124
#include "cy_device_headers.h"
125125

126126
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/i2s/cy_i2s.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_i2s.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@
142142

143143
#include <stddef.h>
144144
#include <stdbool.h>
145-
#include "syslib/cy_syslib.h"
146-
#include "syspm/cy_syspm.h"
145+
#include "cy_syslib.h"
146+
#include "cy_syspm.h"
147147

148148
#ifndef CY_IP_MXAUDIOSS
149149
#error "The I2S driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ipc/cy_ipc_drv.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_ipc_drv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
/******************************************************************************/
283283
/* Include files */
284284
/******************************************************************************/
285-
#include "syslib/cy_syslib.h"
285+
#include "cy_syslib.h"
286286
#include "cy_device_headers.h"
287287
#include "cy_ipc_config.h"
288288
#include <stddef.h>

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ipc/cy_ipc_pipe.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_ipc_pipe.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
/******************************************************************************/
1818
/* Include files */
1919
/******************************************************************************/
20-
#include "ipc/cy_ipc_drv.h"
21-
#include "syslib/cy_syslib.h"
22-
#include "sysint/cy_sysint.h"
20+
#include "cy_ipc_drv.h"
21+
#include "cy_syslib.h"
22+
#include "cy_sysint.h"
2323

2424
/**
2525
* \addtogroup group_ipc_pipe IPC pipes layer (IPC_PIPE)

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/lpcomp/cy_lpcomp.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_lpcomp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@
150150
#include <stdbool.h>
151151
#include <stddef.h>
152152
#include "cy_device_headers.h"
153-
#include "syslib/cy_syslib.h"
154-
#include "syspm/cy_syspm.h"
153+
#include "cy_syslib.h"
154+
#include "cy_syspm.h"
155155

156156
#ifndef CY_IP_MXLPCOMP
157157
#error "The LPCOMP driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/lvd/cy_lvd.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_lvd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
#if !defined CY_LVD_H
106106
#define CY_LVD_H
107107

108-
#include "syspm/cy_syspm.h"
108+
#include "cy_syspm.h"
109109

110110
#ifdef __cplusplus
111111
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/mcwdt/cy_mcwdt.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_mcwdt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ extern "C" {
121121
#include <stdbool.h>
122122
#include <stddef.h>
123123
#include "cy_device_headers.h"
124-
#include "syslib/cy_syslib.h"
124+
#include "cy_syslib.h"
125125

126126
#ifndef CY_IP_MXS40SRSS_MCWDT
127127
#error "The MCWDT driver is not supported on this device"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@
161161
/******************************************************************************/
162162

163163
#include "cy_device_headers.h"
164-
#include "syslib/cy_syslib.h"
165-
#include "syspm/cy_syspm.h"
164+
#include "cy_syslib.h"
165+
#include "cy_syspm.h"
166166
#include <stddef.h>
167167
#include <stdbool.h>
168168

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
#define CY_PROFILE_H
179179

180180
#include "cy_device_headers.h"
181-
#include "syslib/cy_syslib.h"
181+
#include "cy_syslib.h"
182182
#include <stddef.h>
183183

184184
#ifndef CY_IP_MXPROFILE

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/prot/cy_prot.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_prot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@
380380

381381
#include <stdbool.h>
382382
#include <stddef.h>
383-
#include "syslib/cy_syslib.h"
383+
#include "cy_syslib.h"
384384
#include "cy_device_headers.h"
385385

386386
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/rtc/cy_rtc.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_rtc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@
280280
#include <stddef.h>
281281
#include <stdbool.h>
282282
#include "cy_device_headers.h"
283-
#include "syslib/cy_syslib.h"
284-
#include "syspm/cy_syspm.h"
283+
#include "cy_syslib.h"
284+
#include "cy_syspm.h"
285285

286286
#ifndef CY_IP_MXS40SRSS_RTC
287287
#error "The RTC driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/sar/cy_sar.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_sar.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,8 @@
584584
#include <stdbool.h>
585585
#include <stddef.h>
586586
#include "cy_device_headers.h"
587-
#include "syslib/cy_syslib.h"
588-
#include "syspm/cy_syspm.h"
587+
#include "cy_syslib.h"
588+
#include "cy_syspm.h"
589589

590590
#ifndef CY_IP_MXS40PASS_SAR
591591
#error "The SAR driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/scb/cy_scb_common.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_scb_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@
9999
#include <stddef.h>
100100
#include <stdbool.h>
101101
#include "cy_device_headers.h"
102-
#include "syslib/cy_syslib.h"
103-
#include "syspm/cy_syspm.h"
102+
#include "cy_syslib.h"
103+
#include "cy_syspm.h"
104104

105105
#ifndef CY_IP_MXSCB
106106
#error "The SCB driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/smif/cy_smif.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_smif.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@
247247
#include <stdint.h>
248248
#include <stdbool.h>
249249
#include <stddef.h>
250-
#include "syslib/cy_syslib.h"
251-
#include "syspm/cy_syspm.h"
250+
#include "cy_syslib.h"
251+
#include "cy_syspm.h"
252252
#include "cy_device_headers.h"
253253

254254
#ifndef CY_IP_MXSMIF

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/smif/cy_smif_memslot.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_smif_memslot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include <stdint.h>
2121
#include <stdbool.h>
22-
#include "syslib/cy_syslib.h"
22+
#include "cy_syslib.h"
2323
#include "cy_device_headers.h"
2424
#include "cy_smif.h"
2525

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@
144144
#include <stdbool.h>
145145
#include <stddef.h>
146146
#include "cy_device_headers.h"
147-
#include "syslib/cy_syslib.h"
148-
#include "syspm/cy_syspm.h"
147+
#include "cy_syslib.h"
148+
#include "cy_syspm.h"
149149

150150
#ifndef CY_IP_MXS40PASS
151151
#error "The SysAnalog driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/sysclk/cy_sysclk.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_sysclk.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,8 +574,8 @@
574574
#define __CY_SYSCLK_H__
575575

576576
#include "cy_device_headers.h"
577-
#include "syslib/cy_syslib.h"
578-
#include "syspm/cy_syspm.h"
577+
#include "cy_syslib.h"
578+
#include "cy_syspm.h"
579579
#include <stdbool.h>
580580

581581
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/sysint/cy_sysint.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_sysint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
#define CY_SYSINT_H
155155

156156
#include <stddef.h>
157-
#include "syslib/cy_syslib.h"
157+
#include "cy_syslib.h"
158158
#include "cy_device_headers.h"
159159

160160
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/syspm/cy_syspm.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_syspm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@
621621
#include <stdbool.h>
622622
#include <stddef.h>
623623
#include "cy_device_headers.h"
624-
#include "syslib/cy_syslib.h"
624+
#include "cy_syslib.h"
625625

626626
#ifdef __cplusplus
627627
extern "C" {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
*/
8585

8686
#include <stdint.h>
87-
#include "syslib/cy_syslib.h"
87+
#include "cy_syslib.h"
8888

8989
#ifdef __cplusplus
9090
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/tcpwm/cy_tcpwm.h renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/include/cy_tcpwm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
#include <stdint.h>
202202
#include <stdbool.h>
203203
#include <stddef.h>
204-
#include "syslib/cy_syslib.h"
204+
#include "cy_syslib.h"
205205
#include "cy_device_headers.h"
206206

207207
#ifndef CY_IP_MXTCPWM
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
#define CY_TRIGMUX_H
133133

134134
#include "cy_device_headers.h"
135-
#include "syslib/cy_syslib.h"
135+
#include "cy_syslib.h"
136136

137137
#ifndef CY_IP_MXPERI_TR
138138
#error "The TRIGMUX driver is not supported on this device"

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ctb/cy_ctb.c renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/source/cy_ctb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* SPDX-License-Identifier: Apache-2.0
1212
*******************************************************************************/
1313

14-
#include "ctb/cy_ctb.h"
14+
#include "cy_ctb.h"
1515

1616
#if defined(__cplusplus)
1717
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/ctdac/cy_ctdac.c renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/source/cy_ctdac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* SPDX-License-Identifier: Apache-2.0
1111
*******************************************************************************/
1212

13-
#include "ctdac/cy_ctdac.h"
13+
#include "cy_ctdac.h"
1414

1515
#if defined(__cplusplus)
1616
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/peripheral/efuse/cy_efuse.c renamed to targets/TARGET_Cypress/TARGET_PSOC6_FUTURE/device/drivers/source/cy_efuse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*******************************************************************************/
1313

1414
#include "cy_efuse.h"
15-
#include "ipc/cy_ipc_drv.h"
15+
#include "cy_ipc_drv.h"
1616

1717
/** \cond INTERNAL */
1818
#define CY_EFUSE_OPCODE_SUCCESS (0xA0000000UL) /**< The command completed with no errors */

0 commit comments

Comments
 (0)