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? 

Related