Hello,
I have a question regarding the consumption of the nRF9161 DK board when it is under the following conditions: MCU on IDLE, modem off, wake on GPIOTE input (event mode, LATENCY=LowPower) with NCS 2.6.1.

The code shown below allows for a consumption of approximately 601 µA, which corresponds to the conditions specified in the datasheet for MCU on IDLE, modem off, wake on GPIOTE input (event mode, LATENCY=LowLatency).
#include <stdio.h>
#include <nrf_modem_gnss.h>
#include <modem/nrf_modem_lib.h>
int main(void)
{
nrf_modem_lib_init();
lte_lc_power_off();
while(1){
k_cpu_idle();
}
return 0;
}
How can the code be modified to reflect the conditions specified in the datasheet for MCU on IDLE, modem off, wake on GPIOTE input (event mode, LATENCY=LowPower)?