The s310_nrf51422 migration document states:
Due to an issue present in this release, the application is required to set the device address to the factory default right after calling sd_ble_enable(), this can be achieved with the following lines: sd_ble_enable(p_ble_enable_params); sd_ble_gap_address_get(&addr); sd_ble_gap_address_set(BLE_GAP_ADDR_CYCLE_MODE_NONE, &addr);
But the BLE-ANT HRM Relay example (SDK 7.2.0) does not do this! It calls sd_ble_enable(), but never calls sd_ble_gap_address_get() nor sd_ble_gap_address_set()
Is the example wrong? Or is the migration document wrong?