蓝牙4.0(cc2据的540)在BLE stack 中是如何通过rf接受数据的?
蓝牙4.0(cc2540)在BLE stack 中是如何通过rf接受数据的?
BLE的协议栈包括控制部分与主机部分。在控制部分底层是PHY以及链路层。链路层控制RF模块的模式:standby, advertising, scanning, initiating, or connected. 大概是通过广播,应答者响应,连接上。具体可以参考http://www.ti.com.cn/cn/lit/ug/swru271b/swru271b.pdf协议栈的解释。
在BLE的协议中,是用过GATT层进行数据的收发的。
很感谢您的回复,我最想知道的是接收数据是会不会经过APP层,希望能得到您的指教
你指的是GATT profile吗 可以在GATT profile中找到接受数据的函数吗?希望能跟你们交流,这里有个群:126311572
看你需不需要处理APP数据,通常答案是肯定的,显然你是需要接收并处理数据。实际上BLE就两种方式传递数据第一种.client -request->server,server-response-client,第二种方式是Server-notification or indication->client.举下面这个例子(request->response),这里就是对APP数据的处理,如果你不处理也可以。
static void simpleBLECentralProcessGATTMsg( gattMsgEvent_t *pMsg )
{
if ( simpleBLEState != BLE_STATE_CONNECTED )
{
// In case a GATT message came after a connection has dropped,
// ignore the message
return;
}
if ( ( pMsg->method == ATT_READ_RSP ) ||
( ( pMsg->method == ATT_ERROR_RSP ) &&
( pMsg->msg.errorRsp.reqOpcode == ATT_READ_REQ ) ) )
{
if ( pMsg->method == ATT_ERROR_RSP )
{
uint8 status = pMsg->msg.errorRsp.errCode;
LCD_WRITE_STRING_VALUE( "Read Error", status, 10, HAL_LCD_LINE_1 );
}
else
{
// After a successful read, display the read value
uint8 valueRead = pMsg->msg.readRsp.value[0];
LCD_WRITE_STRING_VALUE( "Read rsp:", valueRead, 10, HAL_LCD_LINE_1 );
}
simpleBLEProcedureInProgress = FALSE;
}
else if ( ( pMsg->method == ATT_WRITE_RSP ) ||
( ( pMsg->method == ATT_ERROR_RSP ) &&
( pMsg->msg.errorRsp.reqOpcode == ATT_WRITE_REQ ) ) )
{
if ( pMsg->method == ATT_ERROR_RSP == ATT_ERROR_RSP )
{
uint8 status = pMsg->msg.errorRsp.errCode;
LCD_WRITE_STRING_VALUE( "Write Error", status, 10, HAL_LCD_LINE_1 );
}
else
{
// After a succesful write, display the value that was written and increment value
LCD_WRITE_STRING_VALUE( "Write sent:", simpleBLECharVal++, 10, HAL_LCD_LINE_1 );
}
simpleBLEProcedureInProgress = FALSE;
}
else if ( simpleBLEDiscState != BLE_DISC_STATE_IDLE )
{
simpleBLEGATTDiscoveryEvent( pMsg );
}
}