Skip to content

Commit f5c031d

Browse files
committed
Update mbed build
1 parent d01bdb8 commit f5c031d

File tree

8 files changed

+41
-7
lines changed

8 files changed

+41
-7
lines changed

cores/arduino/mbed/targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H747xI/TARGET_ENVIE/PinNames.h

+9-4
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,15 @@ typedef enum {
351351
STDIO_UART_RX = PA_10,
352352
#endif
353353

354-
// Generic signals namings
355-
LED1 = PK_5, // Red
356-
LED2 = PK_6, // Green
357-
LED3 = PK_7, // Blue
354+
//Led mappings
355+
LED_RED = PK_5, //Red
356+
LED_GREEN = PK_6, //Green
357+
LED_BLUE = PK_7, //Blue
358+
359+
//mbed original LED naming
360+
LED1 = LED_RED,
361+
LED2 = LED_GREEN,
362+
LED3 = LED_BLUE,
358363

359364
USER_BUTTON = PC_13,
360365
// Standardized button names

variants/ENVIE_M4/defines.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
-DFEATURE_LWIP=1
4646
-D__FPU_PRESENT=1
4747
-D__MBED__=1
48-
-DMBED_BUILD_TIMESTAMP=1581676053.4821324
48+
-DMBED_BUILD_TIMESTAMP=1582209375.0377994
4949
-D__MBED_CMSIS_RTOS_CM
5050
-DMBED_MPU_CUSTOM
5151
-DMBED_TICKLESS
@@ -57,6 +57,7 @@
5757
-DTARGET_CORDIO
5858
-DTARGET_CORTEX
5959
-DTARGET_CORTEX_M
60+
-DTARGET_CYW4343X
6061
-DTARGET_ENVIE
6162
-DTARGET_ENVIE_M4
6263
-DTARGET_FAMILY_STM32

variants/ENVIE_M4/libs/libmbed.a

446 KB
Binary file not shown.

variants/ENVIE_M4/mbed_config.h

+1
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@
349349
#define MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK 1 // set by target:FAMILY_STM32
350350
#define MBED_CONF_TARGET_LPUART_CLOCK_SOURCE USE_LPUART_CLK_LSE|USE_LPUART_CLK_PCLK1 // set by target:FAMILY_STM32
351351
#define MBED_CONF_TARGET_LSE_AVAILABLE 1 // set by target:FAMILY_STM32
352+
#define MBED_CONF_TARGET_LSE_BYPASS 1 // set by target:ENVIE
352353
#define MBED_CONF_TARGET_MPU_ROM_END 0x0fffffff // set by target:Target
353354
#define MBED_CONF_TARGET_NETWORK_DEFAULT_INTERFACE_TYPE WIFI // set by target:ENVIE
354355
#define MBED_CONF_TARGET_TICKLESS_FROM_US_TICKER 0 // set by target:Target

0 commit comments

Comments
 (0)