Topic

FAQ
Login Register
Zigbee + BLE Concurrent Mode SDK - scanning module
Jul 22, 2022 07:21

/

A

/A

I have a couple of temperature sensors that use TLSR8251, so I can't use ZigBee on them.

If I use Zigbee + BLE Concurrent Mode SDK and use a Gateway example, can I use in the Gateway example scanning module (like it is used in BLE SDK)?

For example will this work?

blc_ll_initScanning_module(mac_public);
blc_hci_le_setEventMask_cmd(HCI_LE_EVT_MASK_ADVERTISING_REPORT); blc_hci_registerControllerEventHandler(controller_event_callback);

blc_ll_setScanParameter(SCAN_TYPE_PASSIVE, SCAN_INTERVAL_100MS, SCAN_INTERVAL_100MS,
OWN_ADDRESS_PUBLIC, SCAN_FP_ALLOW_ADV_ANY);
blc_ll_addScanningInAdvState(); //add scan in adv state



2 replies
TL_Soyo Jul 22, 2022 13:30
0
/A

HI,

   you can add scan in adv state,and you need 8258 to run concurrent SDK.TLSR8251 has not enough resources.

wes58 [Author] Jul 22, 2022 13:44
0
/A

Hi Soyo,

Thanks for your reply.

Yes, I am using TLSR8258 as a ZigBee gateway. So now I can try it with concurrent SDK and scanning in advertising state.