This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

High power consumption in sleep mode after using SAADC

I am using nRF52832 with SDK 16.0.0. I have a simple application that uses SAADC and BLE. It reads values from three channels AIN0, AIN2 and AIN4 and sends them via BLE every 10 seconds. The SAADC is initialized with call to nrfx_saadc_init() and unintialized with nrfx_saadc_uninit(). Similar the channels are initialized with nrfx_saadc_channel_init() and uninitialized with nrfx_saadc_channel_uninit(). I read samples with a call to nrfx_saadc_sample_convert(). Before the device enters the sleep mode I uninitialize all channels and the SAADC module. However, it consumes approx. 1mA. When I comment out the calls to nrfx_saadc_sample_convert() then the device consumes a few uA as it should. I notice the same behavior with SDK 15.3.0. What is the correct way to disable SAADC? 

Parents Reply
  • I used the last three days to narrow down the problem and more prescience tools to measure current. In fact, when I commented out nrfx_saadc_sample_convert() the compiler removed also a function call to the code that converts the read value to the voltage level. The function is the source of the high current consumption. It uses FPU for the computations. When I removed operations involving FPU the nRF52 consumes 2uA during sleep. When I disable hardware support for FPU (by removing options "-mfloat-abi=hard -mfpu=fpv4-sp-d16" from compiler and linker), I also got 2uA during sleep. With hard FPU, I get 3mA usage. 

Children
Related