f34x_msd_cmd.h

来自「用c8051f34X系列USB单片机实现的支持SD卡和CF的海量存储设备」· C头文件 代码 · 共 47 行

H
47
字号
//-----------------------------------------------------------------------------
// F34x_MSD_Cmd.h
//-----------------------------------------------------------------------------
// Copyright 2006 Silicon Laboratories, Inc.
// http://www.silabs.com
//
// Program Description:
//
// Header file with function prototypes relevant to F34x_Cmd.c
//
//
// FID:            34X000031
// Target:         C8051F34x
// Tool chain:     Keil
// Command Line:   See Readme.txt
// Project Name:   F34x_USB_MSD
//
// Release 1.1
//    -All changes by PKC
//    -09 JUN 2006
//    -No changes; incremented revision number to match project revision
//
// Release 1.0
//    -Initial Release
//

//-----------------------------------------------------------------------------
// Header File Preprocessor Directive
//-----------------------------------------------------------------------------

#ifndef _CMD_H_
#define _CMD_H_

#define CLS 12
#define BACKSPACE 8
#define CRLF '\n'
#define SPACE ' '
#define PROMPT '>'

//-----------------------------------------------------------------------------
// Function Prototypes
//-----------------------------------------------------------------------------

void Cmd_Init(void);
void Cmd_Step(void);

#endif

⌨️ 快捷键说明

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