Today I got the B523 module with the M.2 Evaluation Board in the mail. I hooked everything up, and see that the B523 alone is using around 20 mA in sleep mode. Is there any way to improve on this? it is a bit too much for running on batteries for some time. The device will wake up and publish data every 3 minutes. Test code below (with wakeup every 30 sec):
SystemSleepConfiguration config;
config.mode(SystemSleepMode::STOP)
.gpio(D2, RISING)
.duration(30s)
.network(NETWORK_INTERFACE_CELLULAR);
SystemSleepResult result = System.sleep(config);