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.

Dependents:   C027Interface C027Interface C027_SupportTest

Fork of C027_Support by u-blox

Revision:
142:38b7588c624d
Parent:
116:709a6386e685
--- a/SerialPipe.cpp	Thu Jun 09 22:21:10 2016 -0500
+++ b/SerialPipe.cpp	Thu Feb 02 21:15:50 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)
 {