21 lines
365 B
C
21 lines
365 B
C
#ifndef __BLE_H
|
|
#define __BLE_H
|
|
|
|
/**
|
|
* @brief 重置bt地址为bt_get_local_bd_addr的返回值
|
|
**/
|
|
void bsp_change_bt_mac(void);
|
|
|
|
/**
|
|
* @brief 获取本机ble地址
|
|
**/
|
|
void ble_get_local_bd_addr(u8 *addr);
|
|
|
|
void ble_delete_link_info(void);
|
|
|
|
void app_once_connect_to_android(void);
|
|
|
|
unsigned short att_get_max_mtu(void);
|
|
|
|
#endif //__BLE_H
|