| 1234567891011121314151617181920212223242526272829 |
- /******************************************************************************
- 版权所有:
- 文件名称: flash.h
- 文件版本: 01.01
- 创建作者: sunxi
- 创建日期: 2008-07-21
- 功能说明: flash驱动程序。
- 其它说明:
- 修改记录:
- */
- #ifndef _FLASH_H
- #define _FLASH_H
- /*------------------------------ 外部函数 -------------------------------------
- */
- int flash_init(void);
- int flash_exit(void);
- int flash_read(uint32_t offset, unsigned char *buffer, uint32_t length);
- int flash_write(uint32_t offset, unsigned char *buffer, uint32_t length);
- int flash_erase(uint32_t offset, uint32_t length);
- int at45db321_sector_protection(void);
- int flash_test(void);
- #endif
- /*------------------------------ 文件结束 -------------------------------------
- */
|