40 lines
883 B
C
40 lines
883 B
C
/*
|
|
* @Description:
|
|
* @Version: 1.0
|
|
* @Autor: lzc
|
|
* @Date: 2022-11-11 16:14:25
|
|
* @LastEditors: lzc56 563451665@qq.com
|
|
* @LastEditTime: 2024-07-30 08:48:05
|
|
*/
|
|
|
|
#ifndef __BSP_BLENET_H
|
|
#define __BSP_BLENET_H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/semphr.h"
|
|
#include "freertos/event_groups.h"
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
#include "esp_mac.h"
|
|
#include "nvs_flash.h"
|
|
#include "esp_bt.h"
|
|
|
|
#include "esp_gap_ble_api.h"
|
|
#include "esp_gatts_api.h"
|
|
#include "esp_bt_defs.h"
|
|
#include "esp_bt_main.h"
|
|
#include "esp_gatt_common_api.h"
|
|
|
|
#include "sdkconfig.h"
|
|
#include "cJSON.h"
|
|
|
|
extern TaskHandle_t BLE_NetTasks_TaskHandle; // 任务句柄
|
|
extern TaskHandle_t ParseTaskHandle; // 任务句柄
|
|
|
|
void app_BLE_ConnectNet(void);
|
|
void app_BLE_StopNetConfigEvent(void);
|
|
|
|
#endif |