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
#defineIMU_EXEC IMU_EXEC_FREERTOS //ESP32 always uses FreeRTOS on core0 (can't used float on core1)
20
-
#defineIMU_FREERTOS_TASK_PRIORITY31 //IMU Interrupt task priority, higher number is higher priority. Max priority on ESP32 is 31
20
+
#defineIMU_FREERTOS_TASK_PRIORITY24 //IMU Interrupt task priority, higher number is higher priority. Max priority on ESP32 is 31, but max allowed is 24
vTaskCoreAffinitySet(_imu_ll_task_handle, (1<<othercore)); //[RP2040 only] Sets the core affinity mask for a task, i.e. the cores on which a task can run.
324
+
#else
325
+
#error "IMU_EXEC == IMU_EXEC_FREERTOS_OTHERCORE not supported on this processor"
0 commit comments