mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-12 15:42:52 +00:00
tools: Mass fixing of empty prototypes (for -Wstrict-prototypes)
This commit is contained in:
@@ -32,7 +32,7 @@ static portMUX_TYPE hooks_spinlock = portMUX_INITIALIZER_UNLOCKED;
|
||||
static esp_freertos_idle_cb_t idle_cb[portNUM_PROCESSORS][MAX_HOOKS]={0};
|
||||
static esp_freertos_tick_cb_t tick_cb[portNUM_PROCESSORS][MAX_HOOKS]={0};
|
||||
|
||||
void IRAM_ATTR esp_vApplicationTickHook()
|
||||
void IRAM_ATTR esp_vApplicationTickHook(void)
|
||||
{
|
||||
int n;
|
||||
int core = xPortGetCoreID();
|
||||
@@ -43,7 +43,7 @@ void IRAM_ATTR esp_vApplicationTickHook()
|
||||
}
|
||||
}
|
||||
|
||||
void esp_vApplicationIdleHook()
|
||||
void esp_vApplicationIdleHook(void)
|
||||
{
|
||||
bool can_go_idle=true;
|
||||
int core = xPortGetCoreID();
|
||||
|
Reference in New Issue
Block a user