Hey,
I am working on a version which is uploaded from a bootloader (DFU), the bootloader print to UART and uses the UART libraries.
I want the application to close the UART (to save power), I have done it with app_uart_close(); and so the current drop
But I do not want to include and enable the UART libareries just to shut it down, (to save memory)
Is there a way to shut the UART down without using the libarries (app_uart_fifo, nrf_drv_uart etc..),without app_uart_close()?
Thanks!