《cc2640蓝牙芯片软件开发指导书》中对于此函数的介绍没看懂,而且在所举例子中该函数少了一个参数。请问HCI_EXT_ConnEventNoticeCmd函数实现什么功能?怎样使用?
另外
// Check for BLE stack events first
if (pEvt->signature == 0xffff)
{
if (pEvt->event_flag & SBP_CONN_EVT_END_EVT)
{
// Try to retransmit pending ATT Response (if any)
SimpleBLEPeripheral_sendAttRsp();
}
}
else
{
// Process inter-task message
safeToDealloc = SimpleBLEPeripheral_processStackMsg((ICall_Hdr *)pMsg);
}
此段代码中SBP_CONN_EVT_END_EVT是指什么事件?此事件发生要处理什么?此段代码没看太懂。