File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 2020 * @ingroup config
2121 * @brief Compile time configurations for different kinds of CPU.
2222 */
23+
24+ /**
25+ * @brief Skip calling `board_init()`
26+ *
27+ * Don't call `board_init()`, leave all pins in their default state.
28+ *
29+ * This is intended to be used with basic riotboot_slot which does not interact
30+ * with any external hardware.
31+ *
32+ * @experimental Only use this if you know what you are doing
33+ */
34+ #define DISABLE_BOARD_INIT 0
35+
36+ /**
37+ * @brief Skip calling `cpu_init()`
38+ *
39+ * Don't call `cpu_init()`, leave all CPU configuration in boot-up state.
40+ *
41+ * This is intended to be used with basic riotboot_slot which does not interact
42+ * with any CPU peripherals.
43+ *
44+ * @experimental Only use this if you know what you are doing
45+ */
46+ #define DISABLE_CPU_INIT 0
You can’t perform that action at this time.
0 commit comments