Updated to latest IDF.

This commit is contained in:
Johny Mattsson 2016-09-28 17:57:00 +10:00
parent 33eb1bc790
commit febc8f7f36
3 changed files with 2 additions and 11 deletions

View File

@ -57,9 +57,6 @@
// Event callback prototype // Event callback prototype
typedef void (*nodemcu_esp_event_cb) (const system_event_t *event); typedef void (*nodemcu_esp_event_cb) (const system_event_t *event);
// System event queue getter (matching esp_event_loop.h's declaration)
QueueHandle_t esp_event_loop_get_queue (void);
// Internal definitions // Internal definitions
typedef struct { typedef struct {
system_event_id_t event_id; system_event_id_t event_id;

View File

@ -60,12 +60,6 @@ esp_err_t esp_event_send (system_event_t *event)
} }
QueueHandle_t esp_event_loop_get_queue (void)
{
return esp_event_queue;
}
static void handle_esp_event (task_param_t param, task_prio_t prio) static void handle_esp_event (task_param_t param, task_prio_t prio)
{ {
(void)param; (void)param;
@ -172,7 +166,7 @@ void app_main (void)
nodemcu_init (); nodemcu_init ();
nvs_flash_init (6, 3); nvs_flash_init ();
system_init (); system_init ();
tcpip_adapter_init (); tcpip_adapter_init ();

@ -1 +1 @@
Subproject commit e3ffcd22d533f30550c53023c2c680a1f234f014 Subproject commit e78da3093dbd90bc03cd61aefd3e38e556025a29