RC
Dependents: WizFi250_AP_HelloWorld
Fork of WizFi250Interface by
Diff: WizFi250/WizFi250.h
- Revision:
- 5:8a0702aa91e3
- Parent:
- 4:085e7efeae47
- Child:
- 6:e149bf87a1bd
--- a/WizFi250/WizFi250.h Fri Nov 14 15:10:33 2014 +0900 +++ b/WizFi250/WizFi250.h Fri Nov 14 15:14:56 2014 +0900 @@ -39,15 +39,15 @@ //Debug is disabled by default #if defined(DEBUG) -#define DBG(x, ...) std::printf("[DBG]" x "\r\n", ##__VA_ARGS__); -#define WARN(x, ...) std::printf("[WARN]" x "\r\n", ##__VA_ARGS__); -#define ERR(x, ...) std::printf("[ERR]" x "\r\n", ##__VA_ARGS__); -#define INFO(x, ...) std::printf("[INFO]" x "\r\n", ##__VA_ARGS__); +#define WIZ_DBG(x, ...) std::printf("[DBG]" x "\r\n", ##__VA_ARGS__); +#define WIZ_WARN(x, ...) std::printf("[WARN]" x "\r\n", ##__VA_ARGS__); +#define WIZ_ERR(x, ...) std::printf("[ERR]" x "\r\n", ##__VA_ARGS__); +#define WIZ_INFO(x, ...) std::printf("[INFO]" x "\r\n", ##__VA_ARGS__); #else -#define DBG(x, ...) -#define WARN(x, ...) -#define ERR(x, ...) -#define INFO(x, ...) +#define WIZ_DBG(x, ...) +#define WIZ_WARN(x, ...) +#define WIZ_ERR(x, ...) +#define WIZ_INFO(x, ...) #endif