📄 cellinfo.h
字号:
/**
* CellInfo.h
* Stores basic information about the cells such as
* the number of cells, the size of each, total size
* and the largest cell.
*
* Functions in this file do not read or write to the flash
* they only organize and store the data given to them.
*/
#ifndef _CELL_INFO_H_
#define _CELL_INFO_H_
#include "Ffs.h"
DMS_STATUS dms_CellInfoDefineCellList(DWORD *apdwCellSize, WORD awCellCount);
DMS_STATUS dms_CellInfoFinalize(void);
DMS_STATUS dms_CellInfoDefineCellCount(WORD awCellCount);
void dms_CellInfoDefineCellBlockCount(WORD awCellIndex, WORD awBlockCount);
DMS_STATUS dms_CellInfoCheckValidity(void);
WORD dms_CellInfoGetCount(void);
WORD dms_CellInfoGetBlockCount(WORD awCellIndex);
WORD dms_CellInfoGetTotalBlockCount(void);
WORD dms_CellInfoGetLargestCellBlockCount(void);
#endif /* _CELL_INFO_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -