hi
With the help of the project "Simple_peripheral_oad_onchip" We reliably accept
advert packages. At the same time, in build_config.opt it is set to:
-DHOST_CONFIG=PERIPHERAL_CFG+OBSERVER_CFG
-DRF_SINGLEMODE
Now we want to use WhiteList. To do this, we added to the project:
#define DEFAULT_DISCOVERY_WHITE_LIST GAP_DISC_FILTER_POLICY_WHITE
uint8 WhiteListDevAddr[6];
WhiteListDevAddr[0]=0xac; WhiteListDevAddr[1]=0xac;
WhiteListDevAddr[2]=0xac;
WhiteListDevAddr[3]=0xac; WhiteListDevAddr[4]=0xac;
WhiteListDevAddr[5]=0xac;
LL_AddWhiteListDevice(WhiteListDevAddr, LL_DEV_ADDR_TYPE_PUBLIC);
The "cc2640_ctrlll_pxxo.a" library has been added to the "Properties Project" with
settings in "cc2640_ctrlll_pxxo.opt"
-DHOST_CONFIG=PERIPHERAL_CFG+OBSERVER_CFG
-DBLE_V41_FEATURES=V41_CTRL_CFG
-DBLE_V42_FEATURES=EXT_DATA_LEN_CFG+PRIVACY_1_2_CFG+SECURE_CONNS_CFG
-DRF_SINGLEMODE
-DBUILD_REVISION=0x31375ba9d3
After this, advert packages were no longer accepted. What needs to be fixed?
Thank you.