aboutsummaryrefslogtreecommitdiff
path: root/firmwares/wifishield/wifiHD/src/debug.h
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2012-09-13 10:41:16 -0400
committerDavid A. Mellis <d.mellis@arduino.cc>2012-09-13 10:41:16 -0400
commit0d9a111face4f3629bcae8e52af843792af3b453 (patch)
tree7cc1b8c1b0c1acb7c90a75f258ce036dac494b17 /firmwares/wifishield/wifiHD/src/debug.h
Moving into firmwares directory.
Diffstat (limited to 'firmwares/wifishield/wifiHD/src/debug.h')
-rw-r--r--firmwares/wifishield/wifiHD/src/debug.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/firmwares/wifishield/wifiHD/src/debug.h b/firmwares/wifishield/wifiHD/src/debug.h
new file mode 100644
index 0000000..18608ff
--- /dev/null
+++ b/firmwares/wifishield/wifiHD/src/debug.h
@@ -0,0 +1,109 @@
+//*********************************************/
+//
+// File: debug.h
+//
+// Author: Domenico La Fauci
+//
+//********************************************/
+
+
+#ifndef Debug_H
+#define Debug_H
+
+#include <stdio.h>
+#include <string.h>
+
+#define INFO_INIT_FLAG 1
+#define INFO_TCP_FLAG 2
+#define INFO_SPI_FLAG 4
+#define INFO_CM_FLAG 8
+#define INFO_UTIL_FLAG 16
+#define INFO_5 32
+#define INFO_D (1<<0xD) // Debug
+#define INFO_E (1<<0xE) // Error
+#define INFO_WARN_FLAG (1<<0xF) // Warning
+#define DEFAULT_INFO_FLAG 0 //INFO_WARN_FLAG
+
+extern uint16_t enableDebug;
+extern uint16_t verboseDebug;
+
+#ifdef _INFO_DEBUG_
+#define INFO_INIT(msg, args...) do { \
+if (enableDebug & INFO_INIT_FLAG) printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+#define INFO_TCP(msg, args...) do { \
+if (enableDebug & INFO_TCP_FLAG) printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+#define INFO_TCP_VER(msg, args...) do { \
+if ((enableDebug & INFO_TCP_FLAG)&&(verboseDebug & INFO_TCP_FLAG)) \
+ printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+
+#define INFO_SPI(msg, args...) do { \
+if (enableDebug & INFO_SPI_FLAG) printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+#define INFO_SPI_VER(msg, args...) do { \
+if ((enableDebug & INFO_SPI_FLAG)&&(verboseDebug & INFO_SPI_FLAG)) \
+ printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+
+#define INFO_UTIL(msg, args...) do { \
+if (enableDebug & INFO_UTIL_FLAG) printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+#define INFO_UTIL_VER(msg, args...) do { \
+if ((enableDebug & INFO_UTIL_FLAG)&&(verboseDebug & INFO_UTIL_FLAG)) \
+ printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+
+#else
+#define INFO_INIT(msg, args...) do {}while(0);
+#define INFO_TCP(msg, args...) do {}while(0);
+#define INFO_TCP_VER(msg, args...) do { }while(0);
+#define INFO_SPI(msg, args...) do {}while(0);
+#define INFO_SPI_VER(msg, args...) do { }while(0);
+#define INFO_UTIL(msg, args...) do {}while(0);
+#define INFO_UTIL_VER(msg, args...) do { }while(0);
+#endif
+
+#ifdef _APP_DEBUG_
+#define INFO(msg, args...) do { \
+printk("I-[%s] " msg , __func__ , ##args ); \
+} while (0)
+
+#else /* !defined(_DEBUG_) */
+//#define INFO(msg, args...) do {} while (0)
+#endif /* !defined(_DEBUG_) */
+
+#if 1
+#define WARN(msg, args...) do { \
+ if (enableDebug & INFO_WARN_FLAG) 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);
+
+#ifdef _APP_DEBUG_
+#define DUMP(BUF, COUNT) do { \
+ printk("[%s]\n", __func__); \
+ dump((char*)BUF, COUNT); \
+ } while (0)
+#else
+#define DUMP(BUF, COUNT) do {} while (0)
+#endif
+#endif
+
+#define DUMP_TCP(BUF, COUNT) do { \
+ if (verboseDebug & INFO_TCP_FLAG) { \
+ printk("[%s]\n", __func__); \
+ dump((char*)BUF, COUNT); \
+ }} while (0)
+