2016-11-04 18:48:16 +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.
|
|
|
|
|
2016-10-24 09:08:37 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "gki.h"
|
|
|
|
#include "bt_defs.h"
|
|
|
|
#include "bt_trace.h"
|
|
|
|
#include "bt_types.h"
|
|
|
|
#include "allocator.h"
|
|
|
|
|
|
|
|
#include "bta_api.h"
|
|
|
|
#include "bta_gatt_api.h"
|
|
|
|
|
|
|
|
#include "controller.h"
|
|
|
|
|
|
|
|
#include "hash_map.h"
|
|
|
|
#include "hash_functions.h"
|
|
|
|
#include "alarm.h"
|
|
|
|
#include "thread.h"
|
|
|
|
|
|
|
|
#include "blufi.h"
|
|
|
|
#include "blufi_adv.h"
|
|
|
|
|
|
|
|
xQueueHandle xBlufiTaskQueue;
|
|
|
|
xTaskHandle xBlufiTaskHandle;
|
|
|
|
|
|
|
|
extern void ble_server_test(void);
|
|
|
|
|
|
|
|
static void blufi_task(void *arg)
|
|
|
|
{
|
2016-11-05 11:57:53 +00:00
|
|
|
BtTaskEvt_t e;
|
2016-10-24 09:08:37 +00:00
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (pdTRUE == xQueueReceive(xBlufiTaskQueue, &e, (portTickType)portMAX_DELAY)) {
|
2016-11-05 11:57:53 +00:00
|
|
|
switch (e.sig) {
|
2016-10-24 09:08:37 +00:00
|
|
|
case BLUFI_SIG_SWITCH_CONTEXT:
|
2016-11-05 11:57:53 +00:00
|
|
|
if (e.cb) {
|
|
|
|
((BtTaskCb_t)e.cb)(e.arg);
|
2016-10-24 09:08:37 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-06 18:16:00 +00:00
|
|
|
static esp_err_t blufi_task_post(uint32_t sig, void *par, void *cb, void *arg)
|
2016-10-24 09:08:37 +00:00
|
|
|
{
|
2016-11-05 11:57:53 +00:00
|
|
|
BtTaskEvt_t evt;
|
2016-10-24 09:08:37 +00:00
|
|
|
|
2016-11-05 11:57:53 +00:00
|
|
|
evt.sig = sig;
|
|
|
|
evt.par = par;
|
|
|
|
evt.cb = cb;
|
|
|
|
evt.arg = arg;
|
2016-10-24 09:08:37 +00:00
|
|
|
|
|
|
|
if (xQueueSend(xBlufiTaskQueue, &evt, 10/portTICK_RATE_MS) != pdTRUE) {
|
|
|
|
LOG_ERROR("Blufi Post failed\n");
|
2016-11-06 18:16:00 +00:00
|
|
|
return ESP_FAIL;
|
2016-10-24 09:08:37 +00:00
|
|
|
}
|
|
|
|
|
2016-11-06 18:16:00 +00:00
|
|
|
return ESP_OK;
|
2016-10-24 09:08:37 +00:00
|
|
|
}
|
|
|
|
|
2016-11-06 18:16:00 +00:00
|
|
|
esp_err_t blufi_transfer_context(blufi_task_cb_t cb, void *arg)
|
2016-10-24 09:08:37 +00:00
|
|
|
{
|
2016-11-24 11:57:47 +00:00
|
|
|
LOG_DEBUG("%s cb %08x, arg %u\n", __func__, (uint32_t)cb, (uint32_t)arg);
|
2016-10-24 09:08:37 +00:00
|
|
|
|
|
|
|
return blufi_task_post(BLUFI_SIG_SWITCH_CONTEXT, 0, cb, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void blufi_task_deinit(void)
|
|
|
|
{
|
|
|
|
vTaskDelete(xBlufiTaskHandle);
|
|
|
|
vQueueDelete(xBlufiTaskQueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void blufi_task_init(void)
|
|
|
|
{
|
2016-11-16 14:11:59 +00:00
|
|
|
xBlufiTaskQueue = xQueueCreate(5, sizeof(BtTaskEvt_t));
|
|
|
|
xTaskCreate(blufi_task, "BlUFI", 4096, NULL, configMAX_PRIORITIES - 3, xBlufiTaskHandle);
|
2016-10-24 09:08:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void blufi_init(void) {
|
|
|
|
blufi_task_init();
|
|
|
|
blufi_transfer_context(blufi_enable, NULL);
|
|
|
|
}
|
|
|
|
|
2016-11-06 18:16:00 +00:00
|
|
|
void blufi_deinit(void) {
|
|
|
|
blufi_transfer_context(blufi_disable, blufi_task_deinit);
|
|
|
|
}
|
|
|
|
|