8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7aafc0 commit 5113305Copy full SHA for 5113305
ports/nrf/Makefile
@@ -248,6 +248,7 @@ SRC_C += \
248
drivers/ticker.c \
249
drivers/bluetooth/ble_drv.c \
250
drivers/bluetooth/ble_uart.c \
251
+ $(wildcard boards/$(BOARD)/*.c) \
252
253
ifeq ($(MCU_SUB_VARIANT), nrf52840)
254
ports/nrf/main.c
@@ -103,6 +103,10 @@ int main(int argc, char **argv) {
103
104
105
soft_reset:
106
+ #if defined(MICROPY_BOARD_EARLY_INIT)
107
+ MICROPY_BOARD_EARLY_INIT();
108
+ #endif
109
+
110
#if MICROPY_PY_TIME_TICKS
111
rtc1_init_time_ticks();
112
#endif
0 commit comments