From 87e138fe3cb212f2149e5cc5e83dc9da5aebbea8 Mon Sep 17 00:00:00 2001 From: Kyle Kearney Date: Wed, 9 Oct 2019 14:44:39 -0700 Subject: [PATCH] Fix swapped pins for CYW943012P6EVB-01 in cybsp_types Fix the issue as 09f715c96ef7faadfcc24a8d47dcc9049de86d31 in cybsp_types.h as well. --- .../TARGET_PSOC6/TARGET_CYW943012P6EVB_01/cybsp_types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYW943012P6EVB_01/cybsp_types.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYW943012P6EVB_01/cybsp_types.h index b390ebf6e1..f2ffe47e47 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYW943012P6EVB_01/cybsp_types.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYW943012P6EVB_01/cybsp_types.h @@ -127,10 +127,10 @@ extern "C" { /** Pin: BT Power */ #define CYBSP_BT_POWER (P3_4) -/** Pin: BT Host Wakeup */ -#define CYBSP_BT_HOST_WAKE (P3_5) /** Pin: BT Device Wakeup */ -#define CYBSP_BT_DEVICE_WAKE (P4_0) +#define CYBSP_BT_DEVICE_WAKE (P3_5) +/** Pin: BT Host Wakeup */ +#define CYBSP_BT_HOST_WAKE (P4_0) /** Pin: UART RX */ #define CYBSP_DEBUG_UART_RX (P13_0)