Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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__