1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-22 08:22:04 +03:00

Bugfix on Test Report 12.01.2012

This commit is contained in:
Domenico La Fauci
2012-01-30 00:07:39 +01:00
parent 7fb3a05baa
commit 5778170fa6
15 changed files with 273 additions and 99 deletions

View File

@ -32,9 +32,13 @@ printk("I-[%s] " msg , __func__ , ##args ); \
#define INFO(msg, args...) do {} while (0)
#endif /* !defined(_DEBUG_) */
#if 1
#define WARN(msg, args...) do { \
printk("W-[%s] " msg , __func__ , ##args ); \
} while (0)
#else
#define WARN(msg, args...) do { } while (0)
#endif
extern void dump(char* _buf, uint16_t _count);