《嵌入式固件开发》一书的源码

源代码在线查看: mstat.c

软件大小: 1013 K
上传用户: alin
关键词: 嵌入式 固件 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "config.h"				#include "genlib.h"				#include "stddefs.h"								char *MstatHelp[] = {				    "Monitor status",				    "-[b:]",				    " -b {baud}  set baud rate",				    0,				};								int				Mstat(int argc,char *argv[])				{				    extern  int InitUART(int);				    void    mstatshow(void);				    int     opt;								    /* If no args, just dump current status. */				    if (argc == 1) {				        mstatshow();				        return(0);				    }								    while ((opt=getopt(argc,argv,"b:")) != -1) {				        switch(opt) {				        case 'b':				            InitUART(atoi(optarg));				            break;				        default:				            return(0);				        }				    }				    if (argc != optind)				        return(-1);				    return(0);				}								void				InitMonSTATUS(ulong state)				{				}								void				SetMonSTATUS(void)				{				}								void				mstatshow(void)				{				    monHeader(0);				    mstatshowcom();				}											

相关资源