Files
tactility/main/src/main.c
T
Ken Van Hoeylandt 11f26d4980 consistent header includes
replaced <> with "" for non-system headers
2023-12-27 16:43:30 +01:00

22 lines
476 B
C

#include "nanobake.h"
// Hardware
#include "board_2432s024_touch.h"
#include "board_2432s024_display.h"
// Apps
#include "hello_world/hello_world.h"
__attribute__((unused)) void app_main(void) {
static NbConfig config = {
.display_driver = &board_2432s024_create_display_driver,
.touch_driver = &board_2432s024_create_touch_driver,
.apps = {
&hello_world_app
},
.apps_count = 1
};
nanobake_start(&config);
}