📄 rom_drv.h
字号:
/***************************************************************************
*
* FileName: rom_drv.h
* Revision: 2006/6/6
* Author: Wang Lihui
*****************************************************************************
* DESCRIPTION:
rom driver interface
*
* COPYRIGHT:
(C) HEBEI FAR-EAST HARRIS COMMUNICATIONS COMPANY LTD.
* HISTORY:
06/06/06:
Initial verison by Wang Lihui
*
*/
#ifndef ROM_DRV_H
#define ROM_DRV_H
#define CMD_NF_ERASE_BLOCK 0x01
int ROM_Init(U8 flash_type);
int ROM_EraseBlock(U8 flash_type, int dev, U16 index);
int ROM_ReadBlock(U8 flash_type, int dev, U16 index, U8* buf, U32 count);
int ROM_WriteBlock(U8 flash_type, int dev,U16 index,U8* buf,U32 count);
#endif /* ROM_DRV_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -