123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /*
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include "bt_app_core.h"
- #include <stdint.h>
- #include "esp_system.h"
- #include <string.h>
- #include <stdbool.h>
- #include "esp_log.h"
- #include "freertos/xtensa_api.h"
- #include "freertos/FreeRTOSConfig.h"
- #include "freertos/FreeRTOS.h"
- #include "freertos/queue.h"
- #include "freertos/task.h"
- static const char * TAG = "btappcore";
- static void bt_app_task_handler(void *arg);
- static bool bt_app_send_msg(bt_app_msg_t *msg);
- static void bt_app_work_dispatched(bt_app_msg_t *msg);
- static xQueueHandle s_bt_app_task_queue = NULL;
- static xTaskHandle s_bt_app_task_handle = NULL;
- bool bt_app_work_dispatch(bt_app_cb_t p_cback, uint16_t event, void *p_params, int param_len, bt_app_copy_cb_t p_copy_cback)
- {
- ESP_LOGV(TAG,"%s event 0x%x, param len %d", __func__, event, param_len);
- bt_app_msg_t msg;
- memset(&msg, 0, sizeof(bt_app_msg_t));
- msg.sig = BT_APP_SIG_WORK_DISPATCH;
- msg.event = event;
- msg.cb = p_cback;
- if (param_len == 0) {
- return bt_app_send_msg(&msg);
- } else if (p_params && param_len > 0) {
- if ((msg.param = malloc(param_len)) != NULL) {
- memcpy(msg.param, p_params, param_len);
- /* check if caller has provided a copy callback to do the deep copy */
- if (p_copy_cback) {
- p_copy_cback(&msg, msg.param, p_params);
- }
- return bt_app_send_msg(&msg);
- }
- }
- return false;
- }
- static bool bt_app_send_msg(bt_app_msg_t *msg)
- {
- if (msg == NULL) {
- return false;
- }
- if (xQueueSend(s_bt_app_task_queue, msg, 10 / portTICK_RATE_MS) != pdTRUE) {
- ESP_LOGE(TAG,"%s xQueue send failed", __func__);
- return false;
- }
- return true;
- }
- static void bt_app_work_dispatched(bt_app_msg_t *msg)
- {
- if (msg->cb) {
- msg->cb(msg->event, msg->param);
- }
- }
- static void bt_app_task_handler(void *arg)
- {
- bt_app_msg_t msg;
- for (;;) {
- if (pdTRUE == xQueueReceive(s_bt_app_task_queue, &msg, (portTickType)portMAX_DELAY)) {
- ESP_LOGV(TAG,"%s, sig 0x%x, 0x%x", __func__, msg.sig, msg.event);
- switch (msg.sig) {
- case BT_APP_SIG_WORK_DISPATCH:
- bt_app_work_dispatched(&msg);
- break;
- default:
- ESP_LOGW(TAG,"%s, unhandled sig: %d", __func__, msg.sig);
- break;
- } // switch (msg.sig)
- if (msg.param) {
- free(msg.param);
- }
- }
- else
- {
- ESP_LOGW(TAG,"No messaged received from queue.");
- }
- }
- }
- void bt_app_task_start_up(void)
- {
- s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t));
- assert(s_bt_app_task_queue!=NULL);
- assert(xTaskCreate(bt_app_task_handler, "BtAppT", 4096, NULL, configMAX_PRIORITIES - 3, &s_bt_app_task_handle)==pdPASS);
- return;
- }
- void bt_app_task_shut_down(void)
- {
- if (s_bt_app_task_handle) {
- vTaskDelete(s_bt_app_task_handle);
- s_bt_app_task_handle = NULL;
- }
- if (s_bt_app_task_queue) {
- vQueueDelete(s_bt_app_task_queue);
- s_bt_app_task_queue = NULL;
- }
- }
|