You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tries to start task on core 1, no core 1 available because single core mode
saw this assert in tasks.c
/* Assure that xCoreID is valid or we'll have an out-of-bounds on pxCurrentTCB
You will assert here if e.g. you only have one CPU enabled in menuconfig and
are trying to start a task on core 1. */
configASSERT( xCoreID == tskNO_AFFINITY || xCoreID < portNUM_PROCESSORS);
The text was updated successfully, but these errors were encountered:
hitting this assert
esp-idf/components/freertos/./tasks.c:1066 (prvAddNewTaskToReadyList)- assert failed!
I see this code in arduino WiFiGeneric.cpp
tries to start task on core 1, no core 1 available because single core mode
saw this assert in tasks.c
The text was updated successfully, but these errors were encountered: