USB Host Shield 2.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
hexdump.h
Go to the documentation of this file.
1 /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
2 
3 This software may be distributed and modified under the terms of the GNU
4 General Public License version 2 (GPL2) as published by the Free Software
5 Foundation and appearing in the file GPL2.TXT included in the packaging of
6 this file. Please note that GPL2 Section 2[b] requires that all works based
7 on this software must also be made publicly available under the terms of
8 the GPL2 ("Copyleft").
9 
10 Contact information
11 -------------------
12 
13 Circuits At Home, LTD
14 Web : http://www.circuitsathome.com
15 e-mail : support@circuitsathome.com
16  */
17 #if !defined(__HEXDUMP_H__)
18 #define __HEXDUMP_H__
19 
20 #include <inttypes.h>
21 #include <avr/pgmspace.h>
22 #include "printhex.h"
23 #include "message.h"
24 
25 extern int UsbDEBUGlvl;
26 
27 template <class BASE_CLASS, class LEN_TYPE, class OFFSET_TYPE>
28 class HexDumper : public BASE_CLASS {
29  uint8_t byteCount;
30  OFFSET_TYPE byteTotal;
31 
32 public:
33 
34  HexDumper() : byteCount(0), byteTotal(0) {
35  };
36 
37  void Initialize() {
38  byteCount = 0;
39  byteTotal = 0;
40  };
41 
42  virtual void Parse(const LEN_TYPE len, const uint8_t *pbuf, const OFFSET_TYPE &offset);
43 };
44 
45 template <class BASE_CLASS, class LEN_TYPE, class OFFSET_TYPE>
46 void HexDumper<BASE_CLASS, LEN_TYPE, OFFSET_TYPE>::Parse(const LEN_TYPE len, const uint8_t *pbuf, const OFFSET_TYPE &offset) {
47  if(UsbDEBUGlvl >= 0x80) { // Fully bypass this block of code if we do not debug.
48  for(LEN_TYPE j = 0; j < len; j++, byteCount++, byteTotal++) {
49  if(!byteCount) {
50  PrintHex<OFFSET_TYPE > (byteTotal, 0x80);
51  E_Notify(PSTR(": "), 0x80);
52  }
53  PrintHex<uint8_t > (pbuf[j], 0x80);
54  E_Notify(PSTR(" "), 0x80);
55 
56  if(byteCount == 15) {
57  E_Notify(PSTR("\r\n"), 0x80);
58  byteCount = 0xFF;
59  }
60  }
61  }
62 }
63 
64 #endif // __HEXDUMP_H__