Fork of the MODSERIAL library by Erik Olieman.
Fork of MODSERIAL by
Diff: MODSERIAL.cpp
- Revision:
- 27:5f402fed53e2
- Parent:
- 24:fca9bb26ca15
- Child:
- 29:a469aa702bab
diff -r eb79370d38a2 -r 5f402fed53e2 MODSERIAL.cpp --- a/MODSERIAL.cpp Mon Nov 26 09:24:07 2012 +0000 +++ b/MODSERIAL.cpp Mon Nov 26 09:26:57 2012 +0000 @@ -31,17 +31,17 @@ namespace AjK { -MODSERIAL::MODSERIAL( PinName tx, PinName rx, const char *name ) : Serial( tx, rx ) +MODSERIAL::MODSERIAL( PinName tx, PinName rx) : Serial( tx, rx ) { init( MODSERIAL_DEFAULT_TX_BUFFER_SIZE, MODSERIAL_DEFAULT_RX_BUFFER_SIZE ); } -MODSERIAL::MODSERIAL( PinName tx, PinName rx, int bufferSize, const char *name ) : Serial( tx, rx ) +MODSERIAL::MODSERIAL( PinName tx, PinName rx, int bufferSize) : Serial( tx, rx ) { init( bufferSize, bufferSize ); } -MODSERIAL::MODSERIAL( PinName tx, PinName rx, int txSize, int rxSize, const char *name ) : Serial( tx, rx ) +MODSERIAL::MODSERIAL( PinName tx, PinName rx, int txSize, int rxSize) : Serial( tx, rx ) { init( txSize, rxSize ); }