hw_flash_data.h 358 B

1234567891011
  1. #ifndef __HW_FLASH_DATA_H__
  2. #define __HW_FLASH_DATA_H__
  3. #define HW_FLASH_DATA_SIZE 512
  4. int hw_flash_read(uint32_t pos, void * data,uint32_t length);
  5. int hw_flash_write(uint32_t pos, void * data,uint32_t length);
  6. void hw_flash_erase(uint32_t pos);
  7. int hw_flash_data_is_valid(uint32_t pos,uint32_t length);
  8. uint32_t hw_flash_read_word(uint32_t pos);
  9. #endif