flash.h 311 B

12345678910111213141516171819
  1. /**
  2. * @file flash.h
  3. * @author chenjun (chenjun@radareye.com.cn)
  4. * @brief
  5. * @version 0.1
  6. * @date 2022-04-16
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. */
  11. #ifndef __FLASH_H__
  12. #define __FLASH_H__
  13. #include "rtthread.h"
  14. int flash_write_(void *flash_addr, void *sram_addr, uint32_t len);
  15. #endif /*__FLASH_H__*/