custom for >5 resources
Fork of mbedConnectorInterface by
Diff: api/Logger.h
- Revision:
- 16:383ad1356963
- Parent:
- 5:a929d65eb385
diff -r 8ada80242804 -r 383ad1356963 api/Logger.h --- 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__