Ken Van Hoeylandt 7a7b31e426
Various improvements (#21)
* T-Deck stability and naming improvements

* allow main task to clean itself up

* remove unused includes

* various lvgl improvements

* added docs
2024-01-27 23:13:17 +01:00

22 lines
377 B
C

#include "hello_world/hello_world.h"
#include "tactility.h"
#include "FreeRTOS.h"
#define TAG "main"
extern HardwareConfig sim_hardware;
void app_main() {
static const Config config = {
.hardware = &sim_hardware,
.apps = {
&hello_world_app
},
.services = {},
.auto_start_app_id = NULL
};
tt_init(&config);
}