// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #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