support library for C027 helper functions for Buffer Pipes, Buffered Serial Port (rtos capable) and GPS parsing. It includes modem APIs for USSD, SMS and Sockets.

Fork of C027_Support by u-blox

Revision:
139:356926c18d08
Parent:
116:709a6386e685
--- a/SerialPipe.cpp	Thu Feb 25 13:22:34 2016 +0000
+++ b/SerialPipe.cpp	Wed Nov 30 15:24:37 2016 +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)
 {