BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
6360daf
Branches
Tags
master
mips_sys
fw
debug.h
added debug output functions
Stefan Schuermans
commited
6360daf
at 2012-04-05 21:31:40
debug.h
Blame
History
Raw
#ifndef DEBUG_H #define DEBUG_H /** * @brief print a character to debug output * @param[in] chr character to print */ void debug_chr(char chr); /** * @brief print a string to debug output * @param[in] str string to print */ void debug_str(const char *str); /** * @brief print an unsigned integer in decimal to debug output * @param[in] uint unsigned integer value * @param[in] cnt number of digits */ void debug_uint_dec(unsigned int uint, unsigned int cnt); /** * @brief print an unsigned integer in hexdecimal to debug output * @param[in] uint unsigned integer value * @param[in] cnt number of digits */ void debug_uint_hex(unsigned int uint, unsigned int cnt); #endif /* #ifndef DEBUG_H */