How to reduce serial port power consumption?

I want to know if enabling serial port flow control can reduce serial port power consumption? Alternatively, using app_uard_close when there is no data transmission can reduce power consumption?I use nrf52832

Parents
  • Hi,

    When you enable serial port flow control, this can help you to maybe manage, when the UART is active. This can help in reducing the power consumption, because you will only need to keep the UART active when there is data transmission. 

    Also, using app_uart_close() can help in reducing power consumption. But by just calling the app_uart_close function, you might not be able to disable the UART. You might also need to set the RX pin as input too after this.

    Regards,

    Priyanka

Reply
  • Hi,

    When you enable serial port flow control, this can help you to maybe manage, when the UART is active. This can help in reducing the power consumption, because you will only need to keep the UART active when there is data transmission. 

    Also, using app_uart_close() can help in reducing power consumption. But by just calling the app_uart_close function, you might not be able to disable the UART. You might also need to set the RX pin as input too after this.

    Regards,

    Priyanka

Children
Related