This commit is contained in:
Ken Van Hoeylandt 2023-12-28 12:26:19 +01:00
parent a50fb68973
commit c4a576e4af
2 changed files with 4 additions and 2 deletions

View File

@ -228,6 +228,7 @@ __attribute((__noreturn__)) int32_t prv_gui_main(void* parameter) {
} }
} }
} }
const NbApp gui_app = { const NbApp gui_app = {
.id = "gui", .id = "gui",
.name = "GUI", .name = "GUI",

View File

@ -20,7 +20,8 @@ static int32_t system_info_entry_point(void* param) {
printf(" - [%s] %s (%s)\n", status, name, appid); printf(" - [%s] %s (%s)\n", status, name, appid);
} }
printf("Heap memory available: %d / %d\n", printf(
"Heap memory available: %d / %d\n",
heap_caps_get_free_size(MALLOC_CAP_DEFAULT), heap_caps_get_free_size(MALLOC_CAP_DEFAULT),
heap_caps_get_total_size(MALLOC_CAP_DEFAULT) heap_caps_get_total_size(MALLOC_CAP_DEFAULT)
); );