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

Files at this revision

API Documentation at this revision

Comitter:
maximusismax
Date:
Wed Nov 30 15:24:37 2016 +0000
Parent:
138:dafbbf31bf76
Commit message:
Took lots out from example code, doesn't work yet though.

Changed in this revision

SerialPipe.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r dafbbf31bf76 -r 356926c18d08 SerialPipe.cpp
--- 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)
 {