Hello,
I'm working with the nRF5 SDK for Mesh v4.2.0.
During the init phase, I call the function mesh_stack_init()
After doing so, the consumption is on average 2.8 mA, even when doing :
for (;;)
{
nrf_pwr_mgmt_run();
}
And the MCU is never in idle state.
How to desactivate all the functions initialized by mesh_stack_init() in order to put the MCU in low power state ?
Thank you.