fix(freertos/idf): Fix build error when CONFIG_FREERTOS_USE_TICK_HOOK is enabled

Closes https://github.com/espressif/esp-idf/issues/13297
pull/13338/head
Darian Leung 2024-03-01 17:46:32 +08:00
rodzic b76123af06
commit dec3786d30
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 8AC9127B487AA4EF
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -3356,7 +3356,7 @@ BaseType_t xTaskIncrementTick( void )
{
/* Guard against the tick hook being called when the pended tick
* count is being unwound (when the scheduler is being unlocked). */
if( xPendedTicksTemp == ( TickType_t ) 0 )
if( xPendedTicks == ( TickType_t ) 0 )
{
xCallTickHook = pdTRUE;
}