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

0 commit comments

Comments
 (0)