I successfully turned off bluetooth radio using NRF_RADIO->TASKS_DISABLE = 1 when i do advertise_start(); after certain delay i coudnt connect back for data transfer
I successfully turned off bluetooth radio using NRF_RADIO->TASKS_DISABLE = 1 when i do advertise_start(); after certain delay i coudnt connect back for data transfer
When the SoftDevice is enabled some peripherals are blocked/restricted. See Section 11.3 in the S110 SoftDevice spec. The radio is blocked, so trying to access this will cause a hard fault. If you are not connected to anything and you are not doing advertising the radio will not be used, you don't need to "turn it off".
I get what you are saying thank you. I am using MPU 9250 with nordic so there is continuous flow of data since it is motion data and its draining battery very fast so i tried to turn off tx and rx whenever we don't need data since transceiver is the power hungry component in nordic 51822. Is there any other way to solve this,?
I get what you are saying thank you. I am using MPU 9250 with nordic so there is continuous flow of data since it is motion data and its draining battery very fast so i tried to turn off tx and rx whenever we don't need data since transceiver is the power hungry component in nordic 51822. Is there any other way to solve this,?