Hi,
Add the following configurations to your hci_uart project prj.conf:
CONFIG_BT_CTLR_PHY_CODED=y
CONFIG_BT_CTLR_ADV_EXT=y
CONFIG_BT_EXT_ADV=y
Hi,
Add the following configurations to your hci_uart project prj.conf:
CONFIG_BT_CTLR_PHY_CODED=y
CONFIG_BT_CTLR_ADV_EXT=y
CONFIG_BT_EXT_ADV=y
Hello,
I added the above configuration items as you suggested, but I still cannot scan BLE devices that send ADV_EXT_IND with Coded PHY (S=8) using bluetoothctl on my Linux host. Below is my modified configuration. Is there anything wrong with it? Thank you!
Hi,
Try to increase scan data length and RX buffers for extended adv packets (you might need to tune them a bit):
CONFIG_BT_CTLR_SCAN_DATA_LEN_MAX=191
Also if below line didn't help try to add below lines for RF buffers:
CONFIG_BT_EXT_SCAN_BUF_SIZE=1650
CONFIG_BT_BUF_EVT_RX_COUNT=16
CONFIG_BT_CTLR_RX_BUFFERS=9
(+) Cannot scan extended adv for packets > legacy length in zephyr - Nordic Q&A - Nordic DevZone - Nordic DevZone
Thank you for your help. I can now scan the extended advertisements of Coded normally as per your instructions.