Ethernet+BLE prototype
Dependencies: mbed EthernetInterface mbed-rtos
include/log.h@0:da21a9dd2303, 2014-02-18 (annotated)
- Committer:
- teruo
- Date:
- Tue Feb 18 11:34:08 2014 +0000
- Revision:
- 0:da21a9dd2303
- Child:
- 2:23966fe302b4
??????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
teruo | 0:da21a9dd2303 | 1 | #ifndef __LOG_H__ |
teruo | 0:da21a9dd2303 | 2 | #define __LOG_H__ |
teruo | 0:da21a9dd2303 | 3 | |
teruo | 0:da21a9dd2303 | 4 | #define DEBUG_LOG debug_log |
teruo | 0:da21a9dd2303 | 5 | #define INFO_LOG printf |
teruo | 0:da21a9dd2303 | 6 | #define ERROR_LOG printf |
teruo | 0:da21a9dd2303 | 7 | |
teruo | 0:da21a9dd2303 | 8 | int debug_log(char* format, ...); |
teruo | 0:da21a9dd2303 | 9 | |
teruo | 0:da21a9dd2303 | 10 | #endif /* __LOG_H__ */ |