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 4e839b1 commit dc41079Copy full SHA for dc41079
src/boards/boards.c
@@ -63,7 +63,7 @@ bool button_pressed(uint32_t pin)
63
}
64
65
// This is declared so that a board specific init can be called from here.
66
-void __attribute__((weak)) extern_board_init(void) { }
+void __attribute__((weak)) board_init_extra(void) { }
67
void board_init(void)
68
{
69
// stop LF clock just in case we jump from application without reset
src/boards/challenger_840_ble/pinconfig.c
@@ -19,7 +19,7 @@ const uint32_t bootloaderConfig[] =
19
/* CF2 END */
20
};
21
22
-void extern_board_init(void)
+void board_init_extra(void)
23
24
// Turn LDO on
25
nrf_gpio_cfg_output(LDO_CONTROL_PIN);
0 commit comments