mbed Connector Endpoint interface. This interface permits a mbed endpoint to easily setup MDS resources and emit those resources to an MDS server.

Dependents:   IoT_LED_demo ServoTest uWater_Project hackathon ... more

Revision:
16:383ad1356963
Parent:
5:a929d65eb385
--- a/api/Logger.h	Thu Feb 05 14:49:04 2015 +0000
+++ b/api/Logger.h	Fri Feb 06 04:07:51 2015 +0000
@@ -29,9 +29,6 @@
 // Support for std args
 #include <stdarg.h>
 
-// Depends on use of BufferedSerial
-#include "BufferedSerial.h"
-
 // Configuration
 #include "mbedConnectorInterface.h"
 
@@ -47,7 +44,7 @@
     Default constructor
     @param pc input BufferedSerial instance for debugging (if NULL, no debugging output will occur in the library)
     */
-    Logger(const BufferedSerial *pc);
+    Logger(const RawSerial *pc);
 
     /**
     Copy constructor
@@ -69,7 +66,7 @@
 protected:
 
 private:
-    BufferedSerial  *m_pc;
+    RawSerial  *m_pc;
 };
 
 #endif // __LOGGER_H__