微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 无线和射频 > TI蓝牙设计交流 > SimpleBLEPeripheral 蓝牙接收数据字节个数问题

SimpleBLEPeripheral 蓝牙接收数据字节个数问题

时间:10-02 整理:3721RD 点击:

simpleBLECentral    可以通过调用 simpleBLECentralProcessGATTMsg 函数来读出SimpleBLEPeripheral 通过蓝牙发过来的字节数目,

SimpleBLEPeripheral  通过调用什么函数来知道接收到的蓝牙有效数据个数呢?

 

static void simpleBLECentralProcessGATTMsg( gattMsgEvent_t *pMsg )
{
  if ( pMsg->method == ATT_HANDLE_VALUE_NOTI ||
       pMsg->method == ATT_HANDLE_VALUE_IND )
  {
   
     attHandleValueNoti_t noti;
              
     noti.handle = pMsg->msg.handleValueNoti.handle;
     noti.len = pMsg->msg.handleValueNoti.len;
    
     osal_memcpy(&noti.value, &pMsg->msg.handleValueNoti.value,noti.len);
     
     sbpSerialAppWrite(noti.value,noti.len);   
  }

}

应为profile定义好了,所以针对不同的profile在pripheral侧已经有定义好的固定的数据长度

建议看

static uint8 simpleProfile_ReadAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
uint8 *pValue, uint8 *pLen, uint16 offset, uint8 maxLen )做参考

二楼正解

这个函数的pLen值,就是你想要的东西

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top