#include #include #include #include "esp_attr.h" #include "esp_freertos_hooks.h" //We use just a static array here because it's not expected many components will need //an idle or tick hook. #define MAX_HOOKS 8 static esp_freertos_idle_cb_t idle_cb[MAX_HOOKS]={0}; static esp_freertos_tick_cb_t tick_cb[MAX_HOOKS]={0}; void IRAM_ATTR esp_vApplicationTickHook() { int n; for (n=0; n