Ken Van Hoeylandt 11f26d4980 consistent header includes
replaced <> with "" for non-system headers
2023-12-27 16:43:30 +01:00

19 lines
367 B
C

#include "desktop.h"
#include "nb_hardware.h"
#include "core_defines.h"
static int32_t prv_desktop_main(void* param) {
UNUSED(param);
printf("desktop app init\n");
return 0;
}
const NbApp desktop_app = {
.id = "desktop",
.name = "Desktop",
.type = SERVICE,
.entry_point = &prv_desktop_main,
.stack_size = 2048,
.priority = 10
};