modem sleep: delete wifi modem sleep callback in idle task.
This commit is contained in:
parent
3bf5fb8ae7
commit
e332407785
4 changed files with 2 additions and 13 deletions
|
@ -105,15 +105,6 @@ esp_err_t esp_wifi_internal_reg_rxcb(wifi_interface_t ifx, wifi_rxcb_t fn);
|
||||||
*/
|
*/
|
||||||
esp_err_t esp_wifi_internal_set_sta_ip(void);
|
esp_err_t esp_wifi_internal_set_sta_ip(void);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief The WiFi power save callback function
|
|
||||||
*
|
|
||||||
* @param none
|
|
||||||
*
|
|
||||||
* @return none
|
|
||||||
*/
|
|
||||||
void esp_wifi_ps_idle_cb(void);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
#include "soc/timer_group_struct.h"
|
#include "soc/timer_group_struct.h"
|
||||||
#include "soc/timer_group_reg.h"
|
#include "soc/timer_group_reg.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "esp_wifi_internal.h"
|
|
||||||
|
|
||||||
#include "esp_task_wdt.h"
|
#include "esp_task_wdt.h"
|
||||||
|
|
||||||
|
@ -168,7 +167,6 @@ void vApplicationIdleHook(void) {
|
||||||
if (xPortGetCoreID()!=0) return;
|
if (xPortGetCoreID()!=0) return;
|
||||||
#endif
|
#endif
|
||||||
esp_task_wdt_feed();
|
esp_task_wdt_feed();
|
||||||
esp_wifi_ps_idle_cb();
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ functions but without including stdio.h here. */
|
||||||
/*
|
/*
|
||||||
* Defines the size, in words, of the stack allocated to the idle task.
|
* Defines the size, in words, of the stack allocated to the idle task.
|
||||||
*/
|
*/
|
||||||
#define tskIDLE_STACK_SIZE 2048//configMINIMAL_STACK_SIZE
|
#define tskIDLE_STACK_SIZE configMINIMAL_STACK_SIZE
|
||||||
|
|
||||||
#if( configUSE_PREEMPTION == 0 )
|
#if( configUSE_PREEMPTION == 0 )
|
||||||
/* If the cooperative scheduler is being used then a yield should not be
|
/* If the cooperative scheduler is being used then a yield should not be
|
||||||
|
|
|
@ -63,7 +63,7 @@ extern "C" void nvs_dump()
|
||||||
|
|
||||||
extern "C" esp_err_t nvs_flash_init(void)
|
extern "C" esp_err_t nvs_flash_init(void)
|
||||||
{
|
{
|
||||||
return nvs_flash_init_custom(6, 3);
|
return nvs_flash_init_custom(9, 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" esp_err_t nvs_flash_init_custom(uint32_t baseSector, uint32_t sectorCount)
|
extern "C" esp_err_t nvs_flash_init_custom(uint32_t baseSector, uint32_t sectorCount)
|
||||||
|
|
Loading…
Reference in a new issue