This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to close uart without using the uart libararies, without app_uart_close();

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!