Fix code formatting

This commit is contained in:
Jean-François Milants 2023-04-09 10:46:55 +02:00 committed by JF
parent e038703efe
commit 8abfd25a6c
3 changed files with 3 additions and 4 deletions

View File

@ -205,8 +205,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
xPortGetFreeHeapSize(), xPortGetFreeHeapSize(),
xPortGetMinimumEverFreeHeapSize(), xPortGetMinimumEverFreeHeapSize(),
mallocFailedCount, mallocFailedCount,
stackOverflowCount stackOverflowCount);
);
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0); lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
return std::make_unique<Screens::Label>(2, 5, label); return std::make_unique<Screens::Label>(2, 5, label);
} }

View File

@ -152,7 +152,7 @@ void vApplicationMallocFailedHook() {
mallocFailedCount++; mallocFailedCount++;
} }
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char */*pcTaskName*/) { void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char* /*pcTaskName*/) {
stackOverflowCount++; stackOverflowCount++;
} }
} }

View File

@ -146,7 +146,7 @@ void vApplicationMallocFailedHook() {
mallocFailedCount++; mallocFailedCount++;
} }
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char */*pcTaskName*/) { void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char* /*pcTaskName*/) {
stackOverflowCount++; stackOverflowCount++;
} }
} }