I have a program that will be configured from console through a UART, disconnected and set to run on a battery backed hibernation cycle.
There are many running messages that get kicked out at various verbosity settings. The simple plan is for the configurer to lower the verbosity to a point where no messages will attempt to print to console after configuring the device. This way the device won't be wasting time/power on print statements when nobody is listening.
This means that we will need custom configuration software to ensure that the verbosity is dropped post-configuration, and raised on connection. (Because if we leave this up to the configurer they will no doubt forget this step occasionally)
Before writing that extra code I thought I should ask if there is a way I can check, from the Tiva side, if there is anyone listening to that console UART. This way when the device wakes up from hibernation it could check to see if there is a console connection and enable/disable printing based on that. As far as I know it's not possible, but as far as I know there could be an indicator bit set somewhere.