00001 /*! \file debug.h \brief Debugging function library. */ 00002 //***************************************************************************** 00003 // 00004 // File Name : 'debug.h' 00005 // Title : Helpful debugging functions 00006 // Author : Pascal Stang - Copyright (C) 2003 00007 // Created : 2003-03-13 00008 // Revised : 2003-03-13 00009 // Version : 0.1 00010 // Target MCU : Atmel AVR series 00011 // Editor Tabs : 4 00012 // 00013 // Description : This file contains a set of functions which may be useful 00014 // for general debugging. 00015 // 00016 // This code is distributed under the GNU Public License 00017 // which can be found at http://www.gnu.org/licenses/gpl.txt 00018 // 00019 //***************************************************************************** 00020 00021 #ifndef DEBUG_H 00022 #define DEBUG_H 00023 00024 // defines 00025 00026 // function prototypes 00027 00028 //! Print a part of memory as a formatted hex table with ascii translation 00029 void debugPrintHexTable(u16 length, u08 *buffer); 00030 00031 00032 #endif