Skip to content

Commit cd4165b

Browse files
vmedcyCruz Monrreal II
authored andcommitted
PSOC6: update BSP generated sources with latest configurator
Use ModusToolbox Device Configurator 1.1.0.284 to generate the BSP low-level initialization code. Compatible version of Device Configurator to be released with ModusToolbox 1.1. Notable changes: * rename cycfg_connectivity -> cycfg_routing * switch LF_CLK clock source from ILO to WCO on CY8CPROTO-062-4343W and CYW943012P6EVB-01
1 parent 91df4c9 commit cd4165b

File tree

37 files changed

+98
-106
lines changed

37 files changed

+98
-106
lines changed

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_4343W/GeneratedSource/cycfg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ void init_cycfg_all(void)
3030
init_cycfg_peripherals();
3131
init_cycfg_pins();
3232
init_cycfg_platform();
33-
init_cycfg_connectivity();
33+
init_cycfg_routing();
3434
}

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_4343W/GeneratedSource/cycfg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
#include "cycfg_peripherals.h"
3535
#include "cycfg_pins.h"
3636
#include "cycfg_platform.h"
37-
#include "cycfg_connectivity.h"
37+
#include "cycfg_routing.h"
3838

3939
void init_cycfg_all(void);
4040

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_4343W/GeneratedSource/cycfg_peripherals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "cy_mcwdt.h"
3636
#include "cy_rtc.h"
3737
#include "cy_tcpwm_pwm.h"
38-
#include "cycfg_connectivity.h"
38+
#include "cycfg_routing.h"
3939
#include "cy_usbfs_dev_drv.h"
4040

4141
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_4343W/GeneratedSource/cycfg_pins.h

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

2828
#include "cycfg_notices.h"
2929
#include "cy_gpio.h"
30-
#include "cycfg_connectivity.h"
30+
#include "cycfg_routing.h"
3131

3232
#if defined(__cplusplus)
3333
extern "C" {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.c
2+
* File Name: cycfg_routing.c
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,11 +22,11 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#include "cycfg_connectivity.h"
25+
#include "cycfg_routing.h"
2626

2727
#include "cy_device_headers.h"
2828

29-
void init_cycfg_connectivity(void)
29+
void init_cycfg_routing(void)
3030
{
3131
HSIOM->AMUX_SPLIT_CTL[2] = HSIOM_V2_AMUX_SPLIT_CTL_SWITCH_AA_SL_Msk |
3232
HSIOM_V2_AMUX_SPLIT_CTL_SWITCH_AA_SR_Msk |
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.h
2+
* File Name: cycfg_routing.h
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,16 +22,16 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#if !defined(CYCFG_CONNECTIVITY_H)
26-
#define CYCFG_CONNECTIVITY_H
25+
#if !defined(CYCFG_ROUTING_H)
26+
#define CYCFG_ROUTING_H
2727

2828
#if defined(__cplusplus)
2929
extern "C" {
3030
#endif
3131

3232
#include "cycfg_notices.h"
33-
void init_cycfg_connectivity(void);
34-
33+
void init_cycfg_routing(void);
34+
#define init_cycfg_connectivity() init_cycfg_routing()
3535
#define ioss_0_port_11_pin_1_HSIOM P11_1_TCPWM1_LINE_COMPL1
3636
#define ioss_0_port_11_pin_2_HSIOM P11_2_SMIF_SPI_SELECT0
3737
#define ioss_0_port_11_pin_3_HSIOM P11_3_SMIF_SPI_DATA3
@@ -73,4 +73,4 @@ void init_cycfg_connectivity(void);
7373
#endif
7474

7575

76-
#endif /* CYCFG_CONNECTIVITY_H */
76+
#endif /* CYCFG_ROUTING_H */

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_BLE/GeneratedSource/cycfg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ void init_cycfg_all(void)
3030
init_cycfg_peripherals();
3131
init_cycfg_pins();
3232
init_cycfg_platform();
33-
init_cycfg_connectivity();
33+
init_cycfg_routing();
3434
}

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_BLE/GeneratedSource/cycfg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
#include "cycfg_peripherals.h"
3535
#include "cycfg_pins.h"
3636
#include "cycfg_platform.h"
37-
#include "cycfg_connectivity.h"
37+
#include "cycfg_routing.h"
3838

3939
void init_cycfg_all(void);
4040

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_BLE/GeneratedSource/cycfg_pins.h

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

2828
#include "cycfg_notices.h"
2929
#include "cy_gpio.h"
30-
#include "cycfg_connectivity.h"
30+
#include "cycfg_routing.h"
3131

3232
#if defined(__cplusplus)
3333
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_BLE/GeneratedSource/cycfg_platform.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ __STATIC_INLINE void Cy_SysClk_IloInit()
119119
__STATIC_INLINE void Cy_SysClk_ClkLfInit()
120120
{
121121
/* The WDT is unlocked in the default startup code */
122-
Cy_SysClk_ClkLfSetSource(CY_SYSCLK_CLKLF_IN_ILO);
122+
Cy_SysClk_ClkLfSetSource(CY_SYSCLK_CLKLF_IN_WCO);
123123
}
124124
__STATIC_INLINE void Cy_SysClk_ClkPath0Init()
125125
{

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_BLE/GeneratedSource/cycfg_platform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
extern "C" {
3636
#endif
3737

38-
#define CY_CFG_SYSCLK_CLKLF_FREQ_HZ 32000
38+
#define CY_CFG_SYSCLK_CLKLF_FREQ_HZ 32768
3939
#define CY_CFG_PWR_VDDA_MV 3300
4040
#define CY_CFG_PWR_VDDD_MV 3300
4141
#define CY_CFG_PWR_VBACKUP_MV 3300
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.c
2+
* File Name: cycfg_routing.c
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,11 +22,11 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#include "cycfg_connectivity.h"
25+
#include "cycfg_routing.h"
2626

2727
#include "cy_device_headers.h"
2828

29-
void init_cycfg_connectivity(void)
29+
void init_cycfg_routing(void)
3030
{
3131
HSIOM->AMUX_SPLIT_CTL[2] = HSIOM_AMUX_SPLIT_CTL_SWITCH_AA_SL_Msk |
3232
HSIOM_AMUX_SPLIT_CTL_SWITCH_AA_SR_Msk |
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.h
2+
* File Name: cycfg_routing.h
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,43 +22,43 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#if !defined(CYCFG_CONNECTIVITY_H)
26-
#define CYCFG_CONNECTIVITY_H
25+
#if !defined(CYCFG_ROUTING_H)
26+
#define CYCFG_ROUTING_H
2727

2828
#if defined(__cplusplus)
2929
extern "C" {
3030
#endif
3131

3232
#include "cycfg_notices.h"
33-
void init_cycfg_connectivity(void);
34-
33+
void init_cycfg_routing(void);
34+
#define init_cycfg_connectivity() init_cycfg_routing()
3535
#define ioss_0_port_11_pin_2_HSIOM P11_2_SMIF_SPI_SELECT0
3636
#define ioss_0_port_11_pin_3_HSIOM P11_3_SMIF_SPI_DATA3
3737
#define ioss_0_port_11_pin_4_HSIOM P11_4_SMIF_SPI_DATA2
3838
#define ioss_0_port_11_pin_5_HSIOM P11_5_SMIF_SPI_DATA1
3939
#define ioss_0_port_11_pin_6_HSIOM P11_6_SMIF_SPI_DATA0
4040
#define ioss_0_port_11_pin_7_HSIOM P11_7_SMIF_SPI_CLK
41-
#define ioss_0_port_1_pin_0_HSIOM HSIOM_SEL_AMUXB
41+
#define ioss_0_port_1_pin_0_HSIOM HSIOM_SEL_AMUXA
4242
#define ioss_0_port_5_pin_1_HSIOM P5_1_SCB5_UART_TX
4343
#define ioss_0_port_6_pin_0_HSIOM P6_0_SCB3_I2C_SCL
4444
#define ioss_0_port_6_pin_1_HSIOM P6_1_SCB3_I2C_SDA
4545
#define ioss_0_port_6_pin_4_HSIOM P6_4_CPUSS_SWJ_SWO_TDO
4646
#define ioss_0_port_6_pin_6_HSIOM P6_6_CPUSS_SWJ_SWDIO_TMS
4747
#define ioss_0_port_6_pin_7_HSIOM P6_7_CPUSS_SWJ_SWCLK_TCLK
48-
#define ioss_0_port_7_pin_1_HSIOM HSIOM_SEL_AMUXB
49-
#define ioss_0_port_7_pin_2_HSIOM HSIOM_SEL_AMUXB
50-
#define ioss_0_port_7_pin_7_HSIOM HSIOM_SEL_AMUXB
51-
#define ioss_0_port_8_pin_1_HSIOM HSIOM_SEL_AMUXB
52-
#define ioss_0_port_8_pin_2_HSIOM HSIOM_SEL_AMUXB
53-
#define ioss_0_port_8_pin_3_HSIOM HSIOM_SEL_AMUXB
54-
#define ioss_0_port_8_pin_4_HSIOM HSIOM_SEL_AMUXB
55-
#define ioss_0_port_8_pin_5_HSIOM HSIOM_SEL_AMUXB
56-
#define ioss_0_port_8_pin_6_HSIOM HSIOM_SEL_AMUXB
57-
#define ioss_0_port_8_pin_7_HSIOM HSIOM_SEL_AMUXB
48+
#define ioss_0_port_7_pin_1_HSIOM HSIOM_SEL_AMUXA
49+
#define ioss_0_port_7_pin_2_HSIOM HSIOM_SEL_AMUXA
50+
#define ioss_0_port_7_pin_7_HSIOM HSIOM_SEL_AMUXA
51+
#define ioss_0_port_8_pin_1_HSIOM HSIOM_SEL_AMUXA
52+
#define ioss_0_port_8_pin_2_HSIOM HSIOM_SEL_AMUXA
53+
#define ioss_0_port_8_pin_3_HSIOM HSIOM_SEL_AMUXA
54+
#define ioss_0_port_8_pin_4_HSIOM HSIOM_SEL_AMUXA
55+
#define ioss_0_port_8_pin_5_HSIOM HSIOM_SEL_AMUXA
56+
#define ioss_0_port_8_pin_6_HSIOM HSIOM_SEL_AMUXA
57+
#define ioss_0_port_8_pin_7_HSIOM HSIOM_SEL_AMUXA
5858

5959
#if defined(__cplusplus)
6060
}
6161
#endif
6262

6363

64-
#endif /* CYCFG_CONNECTIVITY_H */
64+
#endif /* CYCFG_ROUTING_H */

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ void init_cycfg_all(void)
3030
init_cycfg_peripherals();
3131
init_cycfg_pins();
3232
init_cycfg_platform();
33-
init_cycfg_connectivity();
33+
init_cycfg_routing();
3434
}

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ extern "C" {
3535
#include "cycfg_peripherals.h"
3636
#include "cycfg_pins.h"
3737
#include "cycfg_platform.h"
38-
#include "cycfg_connectivity.h"
38+
#include "cycfg_routing.h"
3939

4040
void init_cycfg_all(void);
4141

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg_peripherals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "cy_mcwdt.h"
3535
#include "cy_rtc.h"
3636
#include "cy_tcpwm_pwm.h"
37-
#include "cycfg_connectivity.h"
37+
#include "cycfg_routing.h"
3838
#include "cy_usbfs_dev_drv.h"
3939

4040
#if defined(__cplusplus)

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg_pins.h

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

2828
#include "cycfg_notices.h"
2929
#include "cy_gpio.h"
30-
#include "cycfg_connectivity.h"
30+
#include "cycfg_routing.h"
3131

3232
#if defined(__cplusplus)
3333
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg_platform.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ __STATIC_INLINE void Cy_SysClk_IloInit()
152152
__STATIC_INLINE void Cy_SysClk_ClkLfInit()
153153
{
154154
/* The WDT is unlocked in the default startup code */
155-
Cy_SysClk_ClkLfSetSource(CY_SYSCLK_CLKLF_IN_ILO);
155+
Cy_SysClk_ClkLfSetSource(CY_SYSCLK_CLKLF_IN_WCO);
156156
}
157157
__STATIC_INLINE void Cy_SysClk_ClkPath0Init()
158158
{

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CKIT_062_WIFI_BT/GeneratedSource/cycfg_platform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
extern "C" {
3636
#endif
3737

38-
#define CY_CFG_SYSCLK_CLKLF_FREQ_HZ 32000
38+
#define CY_CFG_SYSCLK_CLKLF_FREQ_HZ 32768
3939
#define CY_CFG_PWR_VDDA_MV 3300
4040
#define CY_CFG_PWR_VDDD_MV 3300
4141
#define CY_CFG_PWR_VBACKUP_MV 3300
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.c
2+
* File Name: cycfg_routing.c
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,24 +22,24 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#include "cycfg_connectivity.h"
25+
#include "cycfg_routing.h"
2626

2727
#include "cy_trigmux.h"
2828

2929
#include "stdbool.h"
3030

3131
#include "cy_device_headers.h"
3232

33-
void init_cycfg_connectivity(void)
33+
void init_cycfg_routing(void)
3434
{
35-
Cy_TrigMux_Connect(TRIG0_IN_TR_GROUP14_OUTPUT0, TRIG0_OUT_CPUSS_DW0_TR_IN0, false, TRIGGER_TYPE_LEVEL);
36-
Cy_TrigMux_Connect(TRIG0_IN_TR_GROUP14_OUTPUT3, TRIG0_OUT_CPUSS_DW0_TR_IN1, false, TRIGGER_TYPE_LEVEL);
37-
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB0, TRIG14_OUT_TR_GROUP1_INPUT47, false, TRIGGER_TYPE_LEVEL);
38-
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB1, TRIG14_OUT_TR_GROUP0_INPUT46, false, TRIGGER_TYPE_LEVEL);
39-
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB3, TRIG14_OUT_TR_GROUP0_INPUT43, false, TRIGGER_TYPE_LEVEL);
40-
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB7, TRIG14_OUT_TR_GROUP1_INPUT49, false, TRIGGER_TYPE_LEVEL);
41-
Cy_TrigMux_Connect(TRIG1_IN_TR_GROUP14_OUTPUT4, TRIG1_OUT_CPUSS_DW1_TR_IN1, false, TRIGGER_TYPE_LEVEL);
42-
Cy_TrigMux_Connect(TRIG1_IN_TR_GROUP14_OUTPUT6, TRIG1_OUT_CPUSS_DW1_TR_IN3, false, TRIGGER_TYPE_LEVEL);
35+
Cy_TrigMux_Connect(TRIG0_IN_TR_GROUP14_OUTPUT3, TRIG0_OUT_CPUSS_DW0_TR_IN0, false, TRIGGER_TYPE_LEVEL);
36+
Cy_TrigMux_Connect(TRIG0_IN_TR_GROUP14_OUTPUT4, TRIG0_OUT_CPUSS_DW0_TR_IN1, false, TRIGGER_TYPE_LEVEL);
37+
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB0, TRIG14_OUT_TR_GROUP1_INPUT44, false, TRIGGER_TYPE_LEVEL);
38+
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB1, TRIG14_OUT_TR_GROUP0_INPUT47, false, TRIGGER_TYPE_LEVEL);
39+
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB3, TRIG14_OUT_TR_GROUP0_INPUT46, false, TRIGGER_TYPE_LEVEL);
40+
Cy_TrigMux_Connect(TRIG14_IN_UDB_TR_UDB7, TRIG14_OUT_TR_GROUP1_INPUT43, false, TRIGGER_TYPE_LEVEL);
41+
Cy_TrigMux_Connect(TRIG1_IN_TR_GROUP14_OUTPUT0, TRIG1_OUT_CPUSS_DW1_TR_IN3, false, TRIGGER_TYPE_LEVEL);
42+
Cy_TrigMux_Connect(TRIG1_IN_TR_GROUP14_OUTPUT1, TRIG1_OUT_CPUSS_DW1_TR_IN1, false, TRIGGER_TYPE_LEVEL);
4343
HSIOM->AMUX_SPLIT_CTL[2] = HSIOM_AMUX_SPLIT_CTL_SWITCH_AA_SL_Msk |
4444
HSIOM_AMUX_SPLIT_CTL_SWITCH_AA_SR_Msk |
4545
HSIOM_AMUX_SPLIT_CTL_SWITCH_BB_SL_Msk |
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* File Name: cycfg_connectivity.h
2+
* File Name: cycfg_routing.h
33
*
44
* Description:
55
* Establishes all necessary connections between hardware elements.
@@ -22,16 +22,16 @@
2222
* limitations under the License.
2323
********************************************************************************/
2424

25-
#if !defined(CYCFG_CONNECTIVITY_H)
26-
#define CYCFG_CONNECTIVITY_H
25+
#if !defined(CYCFG_ROUTING_H)
26+
#define CYCFG_ROUTING_H
2727

2828
#if defined(__cplusplus)
2929
extern "C" {
3030
#endif
3131

3232
#include "cycfg_notices.h"
33-
void init_cycfg_connectivity(void);
34-
33+
void init_cycfg_routing(void);
34+
#define init_cycfg_connectivity() init_cycfg_routing()
3535
#define ioss_0_port_11_pin_1_HSIOM P11_1_TCPWM1_LINE_COMPL1
3636
#define ioss_0_port_11_pin_2_HSIOM P11_2_SMIF_SPI_SELECT0
3737
#define ioss_0_port_11_pin_3_HSIOM P11_3_SMIF_SPI_DATA3
@@ -73,17 +73,17 @@ void init_cycfg_connectivity(void);
7373
#define cpuss_0_dw1_0_chan_1_tr_in_0_TRIGGER_OUT TRIG1_OUT_CPUSS_DW1_TR_IN1
7474
#define cpuss_0_dw1_0_chan_3_tr_in_0_TRIGGER_OUT TRIG1_OUT_CPUSS_DW1_TR_IN3
7575
#define udb_0_out_p_116_TRIGGER_IN_0 TRIG14_IN_UDB_TR_UDB0
76-
#define udb_0_out_p_116_TRIGGER_IN_1 TRIG1_IN_TR_GROUP14_OUTPUT4
77-
#define udb_0_out_p_117_TRIGGER_IN_0 TRIG0_IN_TR_GROUP14_OUTPUT3
76+
#define udb_0_out_p_116_TRIGGER_IN_1 TRIG1_IN_TR_GROUP14_OUTPUT1
77+
#define udb_0_out_p_117_TRIGGER_IN_0 TRIG0_IN_TR_GROUP14_OUTPUT4
7878
#define udb_0_out_p_117_TRIGGER_IN_1 TRIG14_IN_UDB_TR_UDB1
79-
#define udb_0_out_p_119_TRIGGER_IN_0 TRIG0_IN_TR_GROUP14_OUTPUT0
79+
#define udb_0_out_p_119_TRIGGER_IN_0 TRIG0_IN_TR_GROUP14_OUTPUT3
8080
#define udb_0_out_p_119_TRIGGER_IN_1 TRIG14_IN_UDB_TR_UDB3
8181
#define udb_0_out_p_123_TRIGGER_IN_0 TRIG14_IN_UDB_TR_UDB7
82-
#define udb_0_out_p_123_TRIGGER_IN_1 TRIG1_IN_TR_GROUP14_OUTPUT6
82+
#define udb_0_out_p_123_TRIGGER_IN_1 TRIG1_IN_TR_GROUP14_OUTPUT0
8383

8484
#if defined(__cplusplus)
8585
}
8686
#endif
8787

8888

89-
#endif /* CYCFG_CONNECTIVITY_H */
89+
#endif /* CYCFG_ROUTING_H */

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CMOD_062_4343W/TARGET_CY8CPROTO_062_4343W/GeneratedSource/cycfg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ void init_cycfg_all(void)
3030
init_cycfg_peripherals();
3131
init_cycfg_pins();
3232
init_cycfg_platform();
33-
init_cycfg_connectivity();
33+
init_cycfg_routing();
3434
}

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CMOD_062_4343W/TARGET_CY8CPROTO_062_4343W/GeneratedSource/cycfg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
#include "cycfg_peripherals.h"
3535
#include "cycfg_pins.h"
3636
#include "cycfg_platform.h"
37-
#include "cycfg_connectivity.h"
37+
#include "cycfg_routing.h"
3838

3939
void init_cycfg_all(void);
4040

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CMOD_062_4343W/TARGET_CY8CPROTO_062_4343W/GeneratedSource/cycfg_peripherals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "cy_mcwdt.h"
3636
#include "cy_rtc.h"
3737
#include "cy_tcpwm_pwm.h"
38-
#include "cycfg_connectivity.h"
38+
#include "cycfg_routing.h"
3939

4040
#if defined(__cplusplus)
4141
extern "C" {

targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CMOD_062_4343W/TARGET_CY8CPROTO_062_4343W/GeneratedSource/cycfg_pins.h

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

2828
#include "cycfg_notices.h"
2929
#include "cy_gpio.h"
30-
#include "cycfg_connectivity.h"
30+
#include "cycfg_routing.h"
3131

3232
#if defined(__cplusplus)
3333
extern "C" {

0 commit comments

Comments
 (0)