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

📄 ui_test.c

📁 某个ARM9板子的实际bootloader 对裁剪
💻 C
字号:
/***************************************************************************** Copyright  Storlink Corp 2005.  All rights reserved.                *--------------------------------------------------------------------------* Name			: ui_test.c* Description	: *		Handle testing commands** History**	Date		Writer		Description*	-----------	-----------	-------------------------------------------------*	05/19/2005	Gary Chen	Create*****************************************************************************/#include <define.h>#include <board_config.h>#include "ui_cli.h"#ifdef MIDWAY#define emac_reset_statistics		gmac_reset_statistics#define emac_show_statistics		gmac_show_statistics#endif/*----------------------------------------------------------------------* cli_stat_cmd* 	Usage: stat [reset]** Notes:*	(1) The tftp buf is not freed if download successfully,*		because the use may dump the content.*	*	argc 	= 1 or 2*	argv[0]	= stat*	argv[1]	= reset*----------------------------------------------------------------------*/void cli_stat_cmd(char argc, char *argv[]){	int data;	    if (argc == 2 && (strncasecmp(argv[1], "reset", 2)==0))    {    	emac_reset_statistics();    }		emac_show_statistics(argc, argv);}

⌨️ 快捷键说明

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