Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of C027_Support by
Revision 139:356926c18d08, committed 2016-11-30
- 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) {