Other Parts Discussed in Thread: BLE-STACK
Hello,
We had previously used the following code to enable a single device whitelist on the SimpleObserver project from simplelink_cc2640r2_sdk_1_40_00_45:
static uint8 bdAddressPeer[6] = {0x12,0x34,0x56,0x78,0x9A,0xBC}; HCI_LE_AddWhiteListCmd(ADDRMODE_PUBLIC, bdAddressPeer); VOID GAPObserverRole_StartDevice((gapObserverRoleCB_t *)&simpleBLERoleCB); GAPObserverRole_StartDiscovery(DEFAULT_DISCOVERY_MODE, DEFAULT_DISCOVERY_ACTIVE_SCAN, DEFAULT_DISCOVERY_WHITE_LIST);
We are now trying to add this code (first 2 lines) to the SimpleCentral example from simplelink_cc2640r2_sdk_2_20_00_49, however it does not seem to be applying the filter as we can still see data from other MAC addresses.