📄 debugconsole.h
字号:
/* $Id: debugconsole.h,v 1.3 2005/04/23 14:19:17 simimeie Exp $ * Functions for a serial debug console. If DEBUGCONSOLE is not defined, then * all functions here become empty hulls. */ #ifndef _DEBUGCONSOLE_H_#define _DEBUGCONSOLE_H_#ifdef DEBUGCONSOLEvoid debugconsole_init(void);void debugconsole_work(void);void debugconsole_print(uint8_t * what);void debugconsole_printhex8(uint8_t what);void debugconsole_printtext(uint8_t * what);#else#define debugconsole_init() if (0) { }#define debugconsole_work() if (0) { }#define debugconsole_print(what) if (0) { }#define debugconsole_printhex8(what) if (0) { }#define debugconsole_printtext(what) if (0) { }#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -