Hi. I am developing a gateway using SDK15 and nRF52840.
I'm advertising 4 devices every 20ms.
Theoretically, it should be scanned 50 times each, but in reality it is scanned from 6 to 12.
At this time, the gateway is set up as follows.
/** @brief Parameters used when scanning. */
static ble_gap_scan_params_t const m_scan_params =
{
.active = 0,
.interval = SCAN_INTERVAL, // 0xa0
.window = SCAN_WINDOW, // 0xa0
.timeout = SCAN_DURATION, // 0x00
.scan_phys = BLE_GAP_PHY_1MBPS,
.filter_policy = BLE_GAP_SCAN_FP_ACCEPT_ALL,
};
Please help me.