RT-AICHIP-sample
debug.h
[詳解]
1 /* ------------------------------------------------------------ *
2 File debug.h
3 
4 デバッグ用関数群
5 * ------------------------------------------------------------ */
6 #ifndef DEBUG_H
7 #define DEBUG_H
8 
9 int myPrintfUART(const char *fmt, ...);
10 int myPrintfUSB( const char *fmt, ...);
11 
12 #endif
13 
14 
15 /******************************************************************************
16 ** End Of File
17 ******************************************************************************/
int myPrintfUART(const char *fmt,...)
Definition: debug.c:42
int myPrintfUSB(const char *fmt,...)
Definition: debug.c:23