Files
tactility/main/src/main.c
T
Ken Van Hoeylandt 622c9f780c Revert "fix for flash size in default config"
This reverts commit 38e7a35910.
2024-01-17 20:52:08 +01:00

23 lines
540 B
C

#include "tactility.h"
#include "board_config.h"
// Apps
#include "hello_world/hello_world.h"
__attribute__((unused)) void app_main(void) {
static const Config config = {
/**
* Auto-select a board based on the ./sdkconfig.board.* file
* that you copied to ./sdkconfig before you opened this project.
*/
.hardware = TT_BOARD_HARDWARE,
.apps = {
&hello_world_app
},
.services = { },
.auto_start_app_id = NULL
};
tactility_start(&config);
}