tfsdev.h
来自「《嵌入式固件开发》一书的源码」· C头文件 代码 · 共 23 行
H
23 行
/* 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 }};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?