mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-20 07:25:06 +00:00
cleanup
This commit is contained in:
parent
a50fb68973
commit
c4a576e4af
@ -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",
|
||||||
|
|||||||
@ -7,7 +7,7 @@ static int32_t system_info_entry_point(void* param) {
|
|||||||
UNUSED(param);
|
UNUSED(param);
|
||||||
|
|
||||||
// Wait for all apps to start
|
// Wait for all apps to start
|
||||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
|
|
||||||
size_t system_service_count = nanobake_get_app_thread_count();
|
size_t system_service_count = nanobake_get_app_thread_count();
|
||||||
printf("Running apps:\n");
|
printf("Running apps:\n");
|
||||||
@ -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)
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user