Hi,all.i call function "sd_clock_hfclk_release(); power_manage();" and want my device to sleep.as this,my device's current is 2.2mA.what's wrong ?Can someone help me?
Hi,all.i call function "sd_clock_hfclk_release(); power_manage();" and want my device to sleep.as this,my device's current is 2.2mA.what's wrong ?Can someone help me?
Ensure that you don't have any peripheral enabled like enabled RX in UART, TIMER enabled, GPIOTE task/event enabled etc. any peripheral that requires HF clock will prevent system from shutting it down.
Ensure that you don't have any peripheral enabled like enabled RX in UART, TIMER enabled, GPIOTE task/event enabled etc. any peripheral that requires HF clock will prevent system from shutting it down.
Yes,i enabled UART for DTM,enabled PWM(used timer 2).i initialize these peripheral and then sleep. need to disable them before sleep?Thanks a lot !