Fixed bug with standalone UART CLI

- Sending characters to the UART before it's ready would overflow the buffer causing it to hang
- Added a check to make sure the interface is ready before starting to send characters
- Removed the incorrect check for the usbMuxUart to make sure usb is ready before sending over the uart
This commit is contained in:
Jacob Alexander 2014-06-28 14:12:56 -07:00
parent dd8b04dce2
commit 0365d517fe
4 changed files with 22 additions and 13 deletions

View file

@ -53,7 +53,7 @@ set( ScanModule "MDPure" )
set( MacroModule "PartialMap" )
##| Sends the current list of usb key codes through USB HID
set( OutputModule "usbMuxUart" )
set( OutputModule "uartOut" )
##| Debugging source to use, each module has it's own set of defines that it sets
set( DebugModule "full" )