mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-19 01:45:06 +00:00
* T-Deck stability and naming improvements * allow main task to clean itself up * remove unused includes * various lvgl improvements * added docs
22 lines
377 B
C
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);
|
|
}
|