454

Fork of C027_Support by Umar Naeem

Revision:
140:5a4bc07f8bd0
Parent:
116:709a6386e685
--- a/SerialPipe.cpp	Fri Mar 24 05:42:17 2017 +0000
+++ b/SerialPipe.cpp	Tue May 23 12:51:49 2017 +0000
@@ -1,7 +1,7 @@
 #include "SerialPipe.h"
 
 SerialPipe::SerialPipe(PinName tx, PinName rx, int rxSize, int txSize) : 
-            _SerialPipeBase(tx,rx), 
+            _SerialPipeBase(tx,rx,9600), 
             _pipeRx( (rx!=NC) ? rxSize : 0), 
             _pipeTx( (tx!=NC) ? txSize : 0)
 {