USB-UART bridge for XBee with XCTU.

Dependencies:   USBDevice mbed

USB to UART bridge for XBee with XCTU.
320 350
Windows serial driver:
https://developer.mbed.org/handbook/USBSerial
https://developer.mbed.org/media/uploads/samux/serial.zip

Revision:
1:3d02f8b77d68
Parent:
0:9b1aa393acb3
diff -r 9b1aa393acb3 -r 3d02f8b77d68 BaseUsbUartBridge.cpp
--- a/BaseUsbUartBridge.cpp	Mon May 12 15:53:39 2014 +0000
+++ b/BaseUsbUartBridge.cpp	Tue May 13 15:46:37 2014 +0900
@@ -57,3 +57,13 @@
     return true;    
 }
 
+/* virtual */ void BaseUsbUartBridge::lineCodingChanged(int baud, int bits, int parity, int stop)
+{
+    SerialBase::baud(baud);
+}
+
+/* virtual */ void BaseUsbUartBridge::sendBreak(uint16_t duration)
+{
+    SerialBase::send_break();
+};
+