⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 evbcmds.c

📁 motorola 针对coldfire 5275 评估板的Dbug bootloader源程序
💻 C
字号:
    /*
 * File:        evbcmds.c
 * Purpose:     dBUG command set
 *
 * Notes:
 *
 * Modifications:
 *
 */

#include "src/include/dbug.h"

/********************************************************************/

void
mmap (int, char **);

void
dldbug (int, char **);

void
board_ethaddr (int, char **);

/********************************************************************/

/*
 * dBUG commands
 */
UIF_CMD UIF_CMDTAB[] =
{
    UIF_CMDS_ALL
    CPU_CMDS_ALL
    {"mmap",   4,0,0,0,mmap,    "Display the memory map", ""},
    {"dldbug", 6,0,0,0,dldbug,  "Download and update dBUG", ""},
} ;
const int UIF_NUM_CMD = UIF_CMDTAB_SIZE;

/********************************************************************/

/*
 * dBUG SET/SHOW commands
 */
UIF_SETCMD UIF_SETCMDTAB[] =
{
    UIF_SETCMDS_ALL
    CPU_SETCMDS_ALL
#ifdef DBUG_NETWORK
    { "ethaddr",3,0,1,0,board_ethaddr,"<aa:bb:cc:dd:ee:ff>"},
#endif /* DBUG_NETWORK */
} ;
const int UIF_NUM_SETCMD = UIF_SETCMDTAB_SIZE;

/********************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -