From a0df19a64e98d749f9e0928eeb3f98e8b0ae85be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Fri, 7 Apr 2017 04:15:34 +0000 Subject: [PATCH] fix DEBUG macros --- BaS_gcc/net/arp.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/BaS_gcc/net/arp.c b/BaS_gcc/net/arp.c index 87c48c3..09faab9 100644 --- a/BaS_gcc/net/arp.c +++ b/BaS_gcc/net/arp.c @@ -11,12 +11,8 @@ #include #include -//#define DBG_ARP -#ifdef DBG_ARP -#define dbg(format, arg...) do { xprintf("DEBUG: %s(): " format, __FUNCTION__, ##arg); } while (0) -#else -#define dbg(format, arg...) do { ; } while (0) -#endif /* DBG_ARP */ +//#define DEBUG +#include "debug.h" #define TIMER_NETWORK 3