We have a custom board based on nRF52840. Programming it through external SEGGER interface (P20) available on nRF52840 DK.
Our custom board is designed to use the DC-DC converters. So following changes were made.
1. Set REGOUT0 with 1.8V
2. Enable DCDCEN (Enable DC/DC converter for REG1 stage)
3. Enable DCDCEN0 (Enable DC/DC converter for REG0 stage)
Its similar to High Voltage mode, DC/DC for REG0 and REG1 enabled regulator configuration. Circuit configuration followed is similar to Config-4 in Reference Circuitry as mentioned in nRF52840 Product Specification 1.0 document.
To configure the above settings, wrote below script which run on JLinkExe SWD interface.
selemu
Device nrf52840_xxaa
speed 500
mem 0x10001304,8
mem 0x40000578,1
mem 0x40000580,1
w4 4001e504 1
w4 10001304 FFFFFFF8
w4 40000578 1
w4 40000580 1
Sleep 1000
mem 0x10001304,8
mem 0x40000578,1
mem 0x40000580,1
rx 300
g
qc
DCDCEN register is 0x40000578 and DCDCEN0 register is 0x40000580.
After reset, register DCDCEN0 contents got reset to 0.
Could you please help check if any step is missed in configuration script.