Path fixes for simulator (#357)

This commit is contained in:
Ken Van Hoeylandt
2025-10-03 22:12:55 +02:00
committed by GitHub
parent efd9662cfc
commit a05a6afaaf
11 changed files with 38 additions and 12 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ extern void vAssertCalled(unsigned long line, const char* const file);
#define configUSE_TICKLESS_IDLE 0
#define configTICK_RATE_HZ 1000 // Must be the same as ESP32!
#define configMAX_PRIORITIES 10
#define configMINIMAL_STACK_SIZE 128
#define configMINIMAL_STACK_SIZE 2048
#define configMAX_TASK_NAME_LEN 16
#define configUSE_16_BIT_TICKS 0
#define configIDLE_SHOULD_YIELD 1
@@ -57,7 +57,7 @@ extern void vAssertCalled(unsigned long line, const char* const file);
#define configUSE_TIMERS 1
#define configTIMER_TASK_PRIORITY 3
#define configTIMER_QUEUE_LENGTH 10
#define configTIMER_TASK_STACK_DEPTH configMINIMAL_STACK_SIZE
#define configTIMER_TASK_STACK_DEPTH 10240
/* Define to trap errors during development. */
#define configASSERT(x) if( ( x ) == 0 ) vAssertCalled(__LINE__, __FILE__)
+1
View File
@@ -102,5 +102,6 @@ static void lvgl_task(TT_UNUSED void* arg) {
lv_disp_remove(displayHandle);
displayHandle = nullptr;
vTaskDelete(nullptr);
}