📄 tfsdev.h
字号:
/* tfsdev.h:
This file is ONLY included by tfs.c. It is seperate from tfs.h because
it is target-specific. It is not part of config.h because it includes
the declaration of the tfsdevtbl[].
A prefix in the name of the file determines what device is used to store
that file. If no prefix is found the the first device in the table is
used as a default. The syntax of the prefix is "//STRING/" where STRING
is user-definable, but the initial // and final / are required by tfs
code.
*/
struct tfsdev tfsdevtbl[] = {
{ "//040/",
TFSSTART,
TFSEND,
TFSSPARE,
TFSSPARESIZE,
TFSSECTORCOUNT,
TFS_DEVTYPE_FLASH, },
{ 0, TFSEOT,0,0,0,0,0 }
};
#define TFSDEVTOT ((sizeof(tfsdevtbl))/(sizeof(struct tfsdev)))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -