#include "bsp_pwr.h" void PWR_EnterSleep(void) { //Function for running power management. Should run in the main loop. nrf_pwr_mgmt_run(); } void PWR_Init(void) { ret_code_t ret_code = nrf_pwr_mgmt_init(); APP_ERROR_CHECK(ret_code); }