Firefly开源社区
标题:
关于蓝牙透传,求教
[打印本页]
作者:
Vivian
时间:
2016-9-25 12:34
标题:
关于蓝牙透传,求教
调用哪个方法可以实现通过蓝牙透传传送数据给app
作者:
安安
时间:
2016-9-27 09:30
/*
****************************************************************************************
* @brief Send a notification containing raw data - at connection. *//**
*
* @param[in] conhdl Connection handle
* @param[in] index Index of Characteristic to be sent
* @param[in] length Length of data to be sent
* @param[in] data Pointer to data to be sent
*
* @response QPPS_DATA_SEND_CFM
* @description
* This function is used by the application to send a raw data.
*
****************************************************************************************
*/
void app_qpps_data_send(uint16_t conhdl, uint8_t index, uint8_t length, uint8_t *data)
{
struct qpps_data_send_req * msg = KE_MSG_ALLOC_DYN(QPPS_DATA_SEND_REQ, TASK_QPPS, TASK_APP,
qpps_data_send_req, length);
msg->conhdl = conhdl;
msg->index = index;
msg->length = length;
memcpy(msg->data, data, length);
ke_msg_send(msg);
}
复制代码
以上方法可以实现
作者:
sf116
时间:
2016-11-25 16:28
需要发送的时候直接调用吗?
例如我的需求采集数据慢100Byte就发送,可以这样吗
QQ截图20161125162816.jpg
(79.17 KB, 下载次数: 440)
下载附件
Senddata
2016-11-25 16:28 上传
欢迎光临 Firefly开源社区 (https://dev.t-firefly.com/)
Powered by Discuz! X3.1