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_PRIORITY 24 //IMU Interrupt task priority, higher number is higher priority. Max priority on ESP32 is 31, but max allowed is 24
19
+
#ifndefIMU_EXEC
20
+
#defineIMU_EXEC IMU_EXEC_FREERTOS //ESP32 always uses FreeRTOS on core0 (can't used float on core1)
21
+
#endif
22
+
#ifndefIMU_FREERTOS_TASK_PRIORITY
23
+
#defineIMU_FREERTOS_TASK_PRIORITY (configMAX_PRIORITIES - 1) //IMU Interrupt task priority, higher number is higher priority.
0 commit comments