This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

scan BLE ADV in single channel

i use nrf 52832 for scan BLE adv,  sdk 12.3  , 

for reduce the missing scan signal, I use three ble_central BLE to scan,  so i want set one ble_central to scan one fixed single channel,   then three ble_central scan three diiferent fixed single channel,  is it passble?  how to set "\examples\ble_central\ble_app_uart_c" to scan one fixed single channel?

Parents Reply
  • Yes, having more scanners could improve the probability of receiving an advertisement package from all advertisers within a given time. The way I see it you have two options.

    1. Create a custom scanner, based on the observer code in the previously linked project.

    2. Try to coordinate the scanners. i.e. start scanner 1. Wait until it is done scanning on channel 37, then start scanner 2. wait until scanner 1 finishes scanning on channel 38, then start the 3. scanner. There could be clock drift etc that causes them to scew over time. For signaling you could use ppi and gpiote to toggle gpio's on radio events. it is also possible to read the radio registers from the application to see what channel the scanner is on. But this will be a fairly complex solution.

Children
No Data
Related