I try to use SDK15/FreeRTOS project.
I measured current comsumption on IDLE state(not run any task).
It's take about 200uA.
On FreeRTOS's portable/CMSIS/nrf52/port_cmsis_systick.c line239
#if 0 // With FreeRTOS sd_app_evt_wait increases power consumption with FreeRTOS compared to _WFE (NRFFOSDK-11174)
I try to change "#if 1", current comsumption is reduced.
Why disable sd_app_evt_wait()?