Commented out the body of bool MODSERIAL::claim (FILE *stream) since it causes problems with the latest mbed library

Dependents:   ATT_Cellular_IOT_Button Avnet_ATT_Cellular_Pubnub Hiking_Pal Avnet_ATT_Cellular_IOT ... more

Fork of MODSERIAL by Erik -

Revision:
42:ae4c4f174d1f
Parent:
31:b90b20f78f04
--- a/MODSERIAL.cpp	Tue Nov 17 12:11:44 2015 -0300
+++ b/MODSERIAL.cpp	Mon Aug 01 23:30:57 2016 +0000
@@ -94,6 +94,7 @@
 
 
 bool MODSERIAL::claim (FILE *stream) {
+#if(0)
     if ( _name == NULL) {
         error("claim requires a name to be given in the instantiator of the MODSERIAL instance!\r\n");
     }
@@ -111,6 +112,7 @@
     
     //No buffering
     setvbuf(stdout, NULL, _IONBF, buffer_size[TxIrq]);
+#endif    
     return true;
 }