simplify config

This commit is contained in:
Ken Van Hoeylandt 2024-01-05 19:40:08 +01:00
parent e842e30ab3
commit 1d1dd820df

View File

@ -8,12 +8,9 @@ __attribute__((unused)) void app_main(void) {
static const Config config = { static const Config config = {
.hardware = NB_BOARD_HARDWARE, .hardware = NB_BOARD_HARDWARE,
.apps = { .apps = {
&hello_world_app, &hello_world_app
NULL // NULL terminator - do not remove
},
.services = {
NULL // NULL terminator - do not remove
}, },
.services = { },
}; };
nanobake_start(&config); nanobake_start(&config);