做的最顺利的。。。。找到语句。。一加就好使。。感天动地啊。。。。
在主节点上通知从节点要收他的RSSI啦:
1 if ( !simpleBLERssi ) 2 { 3 simpleBLERssi = TRUE; 4 GAPCentralRole_StartRssi( simpleBLEConnHandle[connhandle[0]], DEFAULT_RSSI_PERIOD ); 5 } 6 else 7 { 8 simpleBLERssi = FALSE; 9 GAPCentralRole_CancelRssi( simpleBLEConnHandle[connhandle[0]] ); 10 11 LCD_WRITE_STRING( "RSSI Cancelled", HAL_LCD_LINE_1 ); 12 }
然后就会调用RSSI的回调函数:
1 static void simpleBLECentralRssiCB( uint16 connHandle, int8 rssi ) 2 { 3 4 LCD_WRITE_STRING_VALUE( "RSSI -dB:", (uint8) (-rssi), 10, HAL_LCD_LINE_1 ); 5 }
在LCD上显示出来啦!
时间: 2024-10-31 22:50:50