Fork of the MODSERIAL library by Erik Olieman.

Dependents:   trs_master

Fork of MODSERIAL by Erik -

Revision:
27:5f402fed53e2
Parent:
24:fca9bb26ca15
Child:
29:a469aa702bab
--- a/MODSERIAL.h	Mon Nov 26 09:24:07 2012 +0000
+++ b/MODSERIAL.h	Mon Nov 26 09:26:57 2012 +0000
@@ -284,7 +284,7 @@
      * @param rx PinName of the TX pin.
      * @param name An option name for RPC usage.
      */    
-    MODSERIAL(PinName tx, PinName rx, const char *name = NULL);
+    MODSERIAL(PinName tx, PinName rx);
     
     /**
      * The MODSERIAL constructor is used to initialise the serial object.
@@ -294,7 +294,7 @@
      * @param bufferSize Integer of the TX and RX buffer sizes.
      * @param name An option name for RPC usage.
      */    
-    MODSERIAL(PinName tx, PinName rx, int bufferSize, const char *name = NULL);
+    MODSERIAL(PinName tx, PinName rx, int bufferSize);
     
     /**
      * The MODSERIAL constructor is used to initialise the serial object.
@@ -305,7 +305,7 @@
      * @param rxBufferSize Integer of the RX buffer sizes.
      * @param name An option name for RPC usage.
      */    
-    MODSERIAL(PinName tx, PinName rx, int txBufferSize, int rxBufferSize, const char *name = NULL);
+    MODSERIAL(PinName tx, PinName rx, int txBufferSize, int rxBufferSize);
     
     virtual ~MODSERIAL();