flash.h 737 B

1234567891011121314151617181920212223242526272829
  1. /******************************************************************************
  2. 版权所有:
  3. 文件名称: flash.h
  4. 文件版本: 01.01
  5. 创建作者: sunxi
  6. 创建日期: 2008-07-21
  7. 功能说明: flash驱动程序。
  8. 其它说明:
  9. 修改记录:
  10. */
  11. #ifndef _FLASH_H
  12. #define _FLASH_H
  13. /*------------------------------ 外部函数 -------------------------------------
  14. */
  15. int flash_init(void);
  16. int flash_exit(void);
  17. int flash_read(uint32_t offset, unsigned char *buffer, uint32_t length);
  18. int flash_write(uint32_t offset, unsigned char *buffer, uint32_t length);
  19. int flash_erase(uint32_t offset, uint32_t length);
  20. int at45db321_sector_protection(void);
  21. int flash_test(void);
  22. #endif
  23. /*------------------------------ 文件结束 -------------------------------------
  24. */