monapp.h
来自「《嵌入式固件开发》一书的源码」· C头文件 代码 · 共 20 行
H
20 行
/* This header file is used by both the application and the monitor. It is the linkage used to establish a communication path between the monitor and the application.*/#define STD_CMD 0#define SU_CMD 1struct monCommand { /* Monitor's command table structure */ char *name; /* Name of command seen by user. */ int (*func)(); /* Function called when command is invoked. */ char **helptxt; /* Help text. */};#define MONVEC 255#define GLOBALINTBASE 99#define CMDLINESIZE 128#define ARGCNT 24
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?