1 #ifndef __DEBUGCONS_H__
2 #define __DEBUGCONS_H__
3 
4 void DebugConsole_Init(void);
5 void DebugConsole_Putc(char ch);
6 void DebugConsole_Puts(const char *str);
7 
8 #endif /* __DEBUGCONS_H__ */
9 
10