mbed-os-example_blinky didn't work with wise-1530, so MTB_ADV_WISE_1530 led configuration have been updated. Also minor update to MTB_MXCHIP_EMW3166 led configuration, led3 is now defined but not connected.

pull/7874/head
Kari Haapalehto 2018-08-03 10:29:13 +03:00 committed by Cruz Monrreal II
parent f8b140f8d7
commit 55bc56dcae
3 changed files with 19 additions and 1 deletions

View File

@ -201,6 +201,7 @@ typedef enum {
// Generic signals namings
LED1 = PB_2,
LED2 = PB_10,
LED3 = NC,
LED_RED = LED1,
LED_BLUE = LED2,
USER_BUTTON = PC_13,

View File

@ -241,9 +241,21 @@ typedef enum {
// Generic signals namings
#ifdef MBED_CONF_TARGET_LED1
LED1 = MBED_CONF_TARGET_LED1,
#else
LED1 = PA_7,
#endif
#ifdef MBED_CONF_TARGET_LED2
LED2 = MBED_CONF_TARGET_LED2,
#else
LED2 = PC_4,
#endif
#ifdef MBED_CONF_TARGET_LED3
LED3 = MBED_CONF_TARGET_LED3,
#else
LED3 = PC_11,
#endif
LED_RED = LED1,
LED_BLUE = LED2,
LED_GREEN = LED3,

View File

@ -1208,6 +1208,11 @@
},
"MTB_ADV_WISE_1530": {
"inherits": ["USI_WM_BN_BM_22"],
"config": {
"led1": "PA_4",
"led2": "PC_12",
"led3": "NC"
},
"overrides": {
"stdio_uart_tx": "PB_10",
"stdio_uart_rx": "PC_11"