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

Files at this revision

API Documentation at this revision

Comitter:
sarahmarshy
Date:
Thu Feb 02 21:15:50 2017 +0000
Parent:
141:0d91c7fe072b
Commit message:
Use the new SerialBase constructor.

Changed in this revision

SerialPipe.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 0d91c7fe072b -r 38b7588c624d SerialPipe.cpp
--- 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)
 {