mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
118984283a
1. use api 2. bluetooth init/deinit/enable/disable wrap api(1st version) 3. bluetooth deinit(free resource) still some problem
15 lines
421 B
C
15 lines
421 B
C
#ifndef __BLUFI_ADV_H__
|
|
#define __BLUFI_ADV_H__
|
|
|
|
#include "bta_api.h"
|
|
#include "btm_ble_api.h"
|
|
#include "esp_bt_defs.h"
|
|
|
|
extern void BlufiBleConfigadvData(esp_ble_adv_data_cfg_t *adv_data,
|
|
esp_ble_set_adv_data_cmpl_cb_t *p_adv_data_cback);
|
|
|
|
extern void BlufiBleSetScanRsp(esp_ble_adv_data_cfg_t *scan_rsp_data,
|
|
esp_ble_set_adv_data_cmpl_cb_t *p_scan_rsp_data_cback);
|
|
|
|
#endif /* __BLUFI_ADV_H__ */
|