Hi I am new to NRF52832. I am using SDK 16, Multlink Central (ble_app_multilink_central).
Here are my questions:
1) The software keep resetting when I flashed the code to the device. But if I use J-Link emulator, it doesn't reset, everything is fine. I then disabled the idle_state_handle(); statement and try again, it won't reset but the NRF_LOG_INFO thru serial port can not be displayed on the PC anymore. Why?
2) I added:
if (sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_SCAN_INIT,0,-40)==NRF_SUCCESS)
{ NRF_LOG_INFO("Transmit power adjusted successfully..."); }
else
{ NRF_LOG_INFO("Transmit power adjust failed..."); }
before the
advertising_start();
I don't think it has any effect. Why ?
3) I use the nRF Connect App and add the same bluetooth ID for the Adveriser on the mobile App, the Multilink Central cannot recognize the mobile App. Why?
4) When I copy the timer codes from timer example to the Multi-Link Central, it stop and generate Fatal error when running. Compile is ok.
Anyone please help?