📄 sd_file.h
字号:
/*----------------------------------------------------------------------------
* R T L F l a s h F i l e S y s t e m E x a m p l e
*----------------------------------------------------------------------------
* Name: SD_CARD.H
* Purpose: File manipulation example definitions
* Rev.: V3.05 / 22-mar-2007
*----------------------------------------------------------------------------
* This code is part of the RealView Run-Time Library.
* Copyright (c) 2004-2007 KEIL - An ARM Company. All rights reserved.
*---------------------------------------------------------------------------*/
#define CNTLQ 0x11
#define CNTLS 0x13
#define DEL 0x7F
#define BACKSPACE 0x08
#define CR 0x0D
#define LF 0x0A
#define ESC 0x1B
/* Command definitions structure. */
typedef struct scmd {
char val[8];
void (*func)(char *par);
} SCMD;
/* External functions */
extern BOOL getline (char *, U32);
extern void init_serial (void);
extern int getkey (void);
#ifdef RT_AGENT
#include "RT_Agent.h"
#define init_comm RTA_Init
#define getkey RTA_TermGetChar
#else
#define init_comm init_serial
#endif
/*----------------------------------------------------------------------------
* end of file
*---------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -