关于GATTServApp_ReadCharCfg问题
时间:12-23
整理:3721RD
点击:
static void battNotifyCB( linkDBItem_t *pLinkItem )
{
if ( pLinkItem->stateFlags & LINK_CONNECTED )
{
// uint16 value = GATTServApp_ReadCharCfg( pLinkItem->connectionHandle,
// battLevelClientCharCfg );
// if ( value & GATT_CLIENT_CFG_NOTIFY )
// {
attHandleValueNoti_t noti;
noti.handle = battAttrTbl[BATT_LEVEL_VALUE_IDX].handle;
noti.len = 1;
noti.value[0] = battLevel;
GATT_Notification( pLinkItem->connectionHandle, ¬i, FALSE );
// }
}
} 我要是不写这两句 会有什么后果吗?value = GATTServApp_ReadCharCfg( pLinkItem->connectionHandle,
// battLevelClientCharCfg ); 是什么意思?
请到对应的蓝牙版面去提问。