Line No. | Rev | Author | Line |
---|---|---|---|
1 | 6 | kaklik | /*! \file debug.h \brief Debugging function library. */ |
2 | //***************************************************************************** |
||
3 | // |
||
4 | // File Name : 'debug.h' |
||
5 | // Title : Helpful debugging functions |
||
6 | // Author : Pascal Stang - Copyright (C) 2003 |
||
7 | // Created : 2003-03-13 |
||
8 | // Revised : 2003-03-13 |
||
9 | // Version : 0.1 |
||
10 | // Target MCU : Atmel AVR series |
||
11 | // Editor Tabs : 4 |
||
12 | // |
||
13 | // Description : This file contains a set of functions which may be useful |
||
14 | // for general debugging. |
||
15 | // |
||
16 | // This code is distributed under the GNU Public License |
||
17 | // which can be found at http://www.gnu.org/licenses/gpl.txt |
||
18 | // |
||
19 | //***************************************************************************** |
||
20 | |||
21 | #ifndef DEBUG_H |
||
22 | #define DEBUG_H |
||
23 | |||
24 | #include "global.h" |
||
25 | |||
26 | // defines |
||
27 | |||
28 | // function prototypes |
||
29 | |||
30 | //! Print a part of memory as a formatted hex table with ascii translation |
||
31 | void debugPrintHexTable(u16 length, u08 *buffer); |
||
32 | |||
33 | |||
34 | #endif |
Powered by WebSVN v2.8.3