Hello
I am using NRF5340 as Soc in my project. In application program I have used uart0 for data transfer. At the same time the power consumption is really important for me
because the board is battery powered. So in idle times I turn off the uart0 by NRF_UARTE0->ENABLE = 0 command and turn it on again by NRF_UARTE0->ENABLE = 8
command. In this way I can reduce the current consumption from 1.5ma to 0.84ma. The problem is that when I add CONFIG_SERIAL=n in the prj.conf file the current
reduces more and goes to 0.48ma. As far as I could understand from the dev zone studies the NRF_UARTE0->ENABLE = 0 command doesn't turn off the clock of uart0
but the command CONFIG_SERIAL=n does. Now I want to to know how can I completely turn off uart0 in my application program(not by prj.conf modification) and also
turn it on again. Thank you in advance for you support.