fix(freertos): Updated threshold for scheduling time test for esp32p4

This commit increases the pass threshold for the scheduling time test on
esp32p4.
pull/13550/head
wuzhenghui 2024-03-26 20:45:50 +08:00
rodzic 621effce5b
commit 7408732688
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 3EFEDECDEBA39BB9
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -68,6 +68,7 @@ void vTestOnAllCores(TestFunction_t pxTestCode, void * pvTestCodeArg, uint32_t u
vTaskDelete(xTaskHandles[ xCoreID ]);
}
vSemaphoreDelete(xTaskDoneSem);
vTaskDelay(10); // Short delay to allow task memory to be freed
}
#endif /* ( CONFIG_FREERTOS_NUMBER_OF_CORES > 1 ) */

Wyświetl plik

@ -9,4 +9,4 @@
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 150
/* Solicited yields (portYIELD() or taskYIELD()) take longer on esp32p4. TODO: IDF-2809 */
#define IDF_PERFORMANCE_MAX_SCHEDULING_TIME 2900
#define IDF_PERFORMANCE_MAX_SCHEDULING_TIME 3200