|
发表于 2015-9-21 09:11:15
只看该作者
板凳
你试一试这个函数。
- /*
- ****************************************************************************************
- * @brief Read local BD addr request. *//**
- *
- * @response GAP_READ_BDADDR_REQ_CMP_EVT
- * @description
- *
- * This function is used to read the Bluetooth Address of the device.
- *
- ****************************************************************************************
- */
- void app_gap_read_bdaddr_req(void)
- {
- // Send the message
- ke_msg_send_basic(GAP_READ_BDADDR_REQ, TASK_GAP, TASK_APP);
- }
复制代码 |
|