Hi there,
Great to hear that, There is a learning curve but it’s not Too heavy a lift though.
Here are some ways to stop BLE on an nRF52840:
- Start and stop advertising: Use
sd_ble_gap_adv_start()
andsd_ble_gap_adv_stop()
- Disconnect from the central: Use
sd_ble_gap_disconnect()
while in a connection - Stop scanning with BLE.end(): While the peripheral is off, stop scanning with
BLE.end()
- Disable completely the 2.4Ghz radio: After the 52840 has full soft device enabled and ble stack has been run, disable completely the 2.4Ghz radio
HTH
GL PJ