📄 evbcmds.c
字号:
/*
* File: cmds.c
* Purpose: dBUG command set
*
* Notes:
*
* Modifications:
*
*/
#include "src/include/dbug.h"
/********************************************************************/
/* Put prototypes to project specific commands here */
/********************************************************************/
/*
* dBUG commands
*/
UIF_CMD UIF_CMDTAB[] =
{
UIF_CMDS_ALL
CPU_CMDS_ALL
/* Put project specific dBUG commands here */
} ;
const int UIF_NUM_CMD = UIF_CMDTAB_SIZE;
/********************************************************************/
/*
* dBUG SET/SHOW commands
*/
UIF_SETCMD UIF_SETCMDTAB[] =
{
UIF_SETCMDS_ALL
CPU_SETCMDS_ALL
/* Put project specific set/show commands here */
} ;
const int UIF_NUM_SETCMD = UIF_SETCMDTAB_SIZE;
/********************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -