2016-09-25 17:17:32 +00:00
|
|
|
// 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 <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
#include "esp_event_loop.h"
|
2018-10-26 05:14:19 +00:00
|
|
|
#include "esp_event_legacy.h"
|
2016-09-25 17:17:32 +00:00
|
|
|
#include "esp_task.h"
|
2018-02-27 10:22:20 +00:00
|
|
|
#include "esp_mesh.h"
|
2016-09-25 17:17:32 +00:00
|
|
|
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "freertos/queue.h"
|
|
|
|
#include "freertos/semphr.h"
|
|
|
|
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
|
|
|
|
|
|
|
static const char* TAG = "event";
|
|
|
|
static bool s_event_init_flag = false;
|
|
|
|
static QueueHandle_t s_event_queue = NULL;
|
|
|
|
static system_event_cb_t s_event_handler_cb = NULL;
|
|
|
|
static void *s_event_ctx = NULL;
|
|
|
|
|
2016-09-26 04:35:09 +00:00
|
|
|
static esp_err_t esp_event_post_to_user(system_event_t *event)
|
2016-09-25 17:17:32 +00:00
|
|
|
{
|
|
|
|
if (s_event_handler_cb) {
|
|
|
|
return (*s_event_handler_cb)(s_event_ctx, event);
|
|
|
|
}
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
2016-09-26 04:35:09 +00:00
|
|
|
static void esp_event_loop_task(void *pvParameters)
|
2016-09-25 17:17:32 +00:00
|
|
|
{
|
|
|
|
while (1) {
|
2016-09-26 04:35:09 +00:00
|
|
|
system_event_t evt;
|
2016-09-25 17:17:32 +00:00
|
|
|
if (xQueueReceive(s_event_queue, &evt, portMAX_DELAY) == pdPASS) {
|
2016-09-26 04:35:09 +00:00
|
|
|
esp_err_t ret = esp_event_process_default(&evt);
|
2016-09-25 17:17:32 +00:00
|
|
|
if (ret != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "default event handler failed!");
|
|
|
|
}
|
2016-09-26 04:35:09 +00:00
|
|
|
ret = esp_event_post_to_user(&evt);
|
2016-09-25 17:17:32 +00:00
|
|
|
if (ret != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "post event to user fail!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 04:35:09 +00:00
|
|
|
system_event_cb_t esp_event_loop_set_cb(system_event_cb_t cb, void *ctx)
|
2016-09-25 17:17:32 +00:00
|
|
|
{
|
|
|
|
system_event_cb_t old_cb = s_event_handler_cb;
|
|
|
|
s_event_handler_cb = cb;
|
|
|
|
s_event_ctx = ctx;
|
|
|
|
return old_cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_event_send(system_event_t *event)
|
|
|
|
{
|
2017-06-05 03:01:26 +00:00
|
|
|
if (s_event_queue == NULL) {
|
|
|
|
ESP_LOGE(TAG, "Event loop not initialized via esp_event_loop_init, but esp_event_send called");
|
|
|
|
return ESP_ERR_INVALID_STATE;
|
|
|
|
}
|
2018-02-27 10:22:20 +00:00
|
|
|
|
|
|
|
if (event->event_id == SYSTEM_EVENT_STA_GOT_IP || event->event_id == SYSTEM_EVENT_STA_LOST_IP) {
|
|
|
|
if (g_mesh_event_cb) {
|
|
|
|
mesh_event_t mevent;
|
|
|
|
if (event->event_id == SYSTEM_EVENT_STA_GOT_IP) {
|
|
|
|
mevent.id = MESH_EVENT_ROOT_GOT_IP;
|
|
|
|
memcpy(&mevent.info.got_ip, &event->event_info.got_ip, sizeof(system_event_sta_got_ip_t));
|
|
|
|
} else {
|
|
|
|
mevent.id = MESH_EVENT_ROOT_LOST_IP;
|
|
|
|
}
|
|
|
|
g_mesh_event_cb(mevent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 04:35:09 +00:00
|
|
|
portBASE_TYPE ret = xQueueSendToBack(s_event_queue, event, 0);
|
|
|
|
if (ret != pdPASS) {
|
2016-09-25 17:17:32 +00:00
|
|
|
if (event) {
|
|
|
|
ESP_LOGE(TAG, "e=%d f", event->event_id);
|
|
|
|
} else {
|
|
|
|
ESP_LOGE(TAG, "e null");
|
|
|
|
}
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
QueueHandle_t esp_event_loop_get_queue(void)
|
|
|
|
{
|
|
|
|
return s_event_queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_event_loop_init(system_event_cb_t cb, void *ctx)
|
|
|
|
{
|
|
|
|
if (s_event_init_flag) {
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
s_event_handler_cb = cb;
|
|
|
|
s_event_ctx = ctx;
|
|
|
|
s_event_queue = xQueueCreate(CONFIG_SYSTEM_EVENT_QUEUE_SIZE, sizeof(system_event_t));
|
|
|
|
|
2016-09-26 04:35:09 +00:00
|
|
|
xTaskCreatePinnedToCore(esp_event_loop_task, "eventTask",
|
2016-09-25 17:17:32 +00:00
|
|
|
ESP_TASKD_EVENT_STACK, NULL, ESP_TASKD_EVENT_PRIO, NULL, 0);
|
|
|
|
|
|
|
|
s_event_init_flag = true;
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|