Part Number: CC2340R5
Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Identical to this thread, I'm unable to receive BLEAPPUTIL_SCAN_REQ_RECEIVED events:
I'm using SDK version 8.40.0.61 basic_ble_profiles project with the only modification being adding BLEAPPUTIL_SCAN_REQ_RECEIVED to peripheralAdvHandler and a case handler to Peripheral_AdvEventHandler().
BLEAppUtil_EventHandler_t peripheralAdvHandler =
{
.handlerType = BLEAPPUTIL_GAP_ADV_TYPE,
.pEventHandler = Peripheral_AdvEventHandler,
.eventMask = BLEAPPUTIL_ADV_START_AFTER_ENABLE |
BLEAPPUTIL_ADV_END_AFTER_DISABLE |
BLEAPPUTIL_SCAN_REQ_RECEIVED
};
case BLEAPPUTIL_SCAN_REQ_RECEIVED:
{
scanReq++;
break;
}
I'm using Ti's Simplink iOS scanning application and I know the scan request is happening because I can see the correct local name - 'Basic BLE project'. As stated above, I'm using the basic BLE profiles project out of the box with the only modifications being in the code snippet above, but here's my sysconfig Broadcaster Configuration just in case there's any questions:

Thank you for any help provided.