diff --git a/hexdump.h b/hexdump.h index 5245e3fc..6dbc08de 100644 --- a/hexdump.h +++ b/hexdump.h @@ -48,13 +48,13 @@ void HexDumper::Parse(const LEN_TYPE len, con for(LEN_TYPE j = 0; j < len; j++, byteCount++, byteTotal++) { if(!byteCount) { PrintHex (byteTotal, 0x80); - Notify(PSTR(": "), 0x80); + E_Notify(PSTR(": "), 0x80); } PrintHex (pbuf[j], 0x80); - Notify(PSTR(" "), 0x80); + E_Notify(PSTR(" "), 0x80); if(byteCount == 15) { - Notify(PSTR("\r\n"), 0x80); + E_Notify(PSTR("\r\n"), 0x80); byteCount = 0xFF; } } diff --git a/printhex.h b/printhex.h index 7ac8af6a..a6ecda43 100644 --- a/printhex.h +++ b/printhex.h @@ -27,7 +27,7 @@ void E_Notifyc(char c, int lvl); template void PrintHex(T val, int lvl) { -#ifdef DEBUG +//#ifdef DEBUG int num_nibbles = sizeof(T) * 2; do { @@ -35,23 +35,23 @@ void PrintHex(T val, int lvl) { if(v > 57) v += 7; E_Notifyc(v, lvl); } while(--num_nibbles); -#endif +//#endif } template void PrintBin(T val, int lvl) { -#ifdef DEBUG +//#ifdef DEBUG for(T mask = (((T) 1) << ((sizeof(T) << 3) - 1)); mask; mask >>= 1) if(val & mask) E_Notifyc('1', lvl); else E_Notifyc('0', lvl); -#endif +//#endif } template void SerialPrintHex(T val) { -#ifdef DEBUG +//#ifdef DEBUG int num_nibbles = sizeof(T) * 2; do { @@ -59,12 +59,12 @@ void SerialPrintHex(T val) { if(v > 57) v += 7; Serial.print(v); } while(--num_nibbles); -#endif +//#endif } template void PrintHex2(Print *prn, T val) { -#ifdef DEBUG +//#ifdef DEBUG T mask = (((T) 1) << (((sizeof(T) << 1) - 1) << 2)); while(mask > 1) { @@ -74,7 +74,7 @@ void PrintHex2(Print *prn, T val) { mask >>= 4; } prn->print((T) val, HEX); -#endif +//#endif } #endif // __PRINTHEX_H__