cmdlist.h

来自「psoc_usb的代码,用来小卡测试的.没事下下来」· C头文件 代码 · 共 23 行

H
23
字号
//-----------------------------------------------------------------------------
// Contents:  main module of a simple firmware
//
// Copyright: Inventec Electronics(Tianjin) Co., Ltd.
// $Archive:  cmdlist.h
// $Date:     2007-08-06
// $Revision: 1.00
//
//-----------------------------------------------------------------------------
// Copyright 2006, xsh.han@itc.inventec
//-----------------------------------------------------------------------------

#ifndef __CMDLIST_H__
#define __CMDLIST_H__

//command line list
#define MAX_CMD_LENGTH 16
struct command_list {
	char message[MAX_CMD_LENGTH];
	struct command_list * next;
};

#endif

⌨️ 快捷键说明

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