We are using nrf52840 USB dongle to get PIR sensor readings and send measurements over the Bluetooth Mesh
Schematics are following:
We increased power for peripherals to 3.3v using following code:const uint32_t REGOUT0 __attribute__ ((section(".uicr_regout0")))
__attribute__ ((used))
= UICR_REGOUT0_VOUT_3V3 | ~UICR_REGOUT0_VOUT_Msk;
Issue is that this change increased power idle consumption from 50μa to 550μa.
Is there any way to increase external peripherals supply voltage without increase of idle consumption?