For power optimization on our nrf5340 project, we followed the recommendations here:
We originally did that with SDK v1.9.1. Recently we upgraded to SDK v2.3.0.
As per that article, the first three code lines in our "void main()" are:
As per that article, the first three code lines in our "void main()" are:
NRF_REGULATORS_S->VREGH.DCDCEN = REGULATORS_VREGH_DCDCEN_DCDCEN_Enabled;
NRF_REGULATORS_S->VREGRADIO.DCDCEN = REGULATORS_VREGRADIO_DCDCEN_DCDCEN_Enabled;
NRF_REGULATORS_S->VREGMAIN.DCDCEN = REGULATORS_VREGMAIN_DCDCEN_DCDCEN_Enabled;
Although everything seems to work well, I would appreciate it if you could explain the exact purpose and meaning of the 2nd last line above, ie:
"...= REGULATORS_VREGRADIO_DCDCEN_DCDCEN_Enabled;"
"...= REGULATORS_VREGRADIO_DCDCEN_DCDCEN_Enabled;"
Questions:
1. What exactly does that line do?
2. Is it still necessary in SDK v2.3.0?
3. How (or why) does this "save/optimize power"?
Thanks!
Gerard
Gerard