I am using SDK 16, SoftDevice S140 V7.0.1 for nrf52840.
I am using the following settings,
/**< Scan parameters requested for scanning and connection. */ static ble_gap_scan_params_t const m_scan_param = { .active = 0x01, .interval = NRF_BLE_SCAN_SCAN_INTERVAL, .window = NRF_BLE_SCAN_SCAN_WINDOW, .filter_policy = BLE_GAP_SCAN_FP_ACCEPT_ALL, .timeout = SCAN_DURATION_WHITELIST, .scan_phys = BLE_GAP_PHY_1MBPS, }; static char const m_target_periph_name[] = "DevICE";
and in scan_init()
init_scan.p_scan_param = &m_scan_param; init_scan.connect_if_match = false; init_scan.conn_cfg_tag = APP_BLE_CONN_CFG_TAG; err_code = nrf_ble_scan_init(&m_scan, &init_scan, scan_evt_handler); if (is_connect_per_addr) // This condition is true { err_code = nrf_ble_scan_filter_set(&m_scan, SCAN_ADDR_FILTER, m_target_periph_addr.addr); APP_ERROR_CHECK(err_code); } err_code = nrf_ble_scan_filters_enable(&m_scan, NRF_BLE_SCAN_NAME_FILTER/*NRF_BLE_SCAN_ALL_FILTER multifilter*/, false/*false normal mode, true multifilter mode*/);
Up till here the m_scan has the name saved to be filtered i.e. "DevICE" (See the gif file in the link below)
I now advertise a tag using nrfconnect Android APP with the name "DevICE". As soon as the code starts
scanning we get BLE_GAP_EVT_ADV_REPORT event and nrf_ble_scan_on_adv_report is called.
Immediately I see the m_scan (at 0x20033C0) which had DevICE stored previously has been updated
by the Softdevice now it has only "CE". With this information set name( corrupted now)
and discovered name "DevICE" cannot be matched.
Please Advise.
Thank you,
MO