/** * @file flash.h * @author chenjun (chenjun@radareye.com.cn) * @brief * @version 0.1 * @date 2022-04-16 * * @copyright Copyright (c) 2022 * */ #ifndef __FLASH_H__ #define __FLASH_H__ #include "rtthread.h" int flash_write_(void *flash_addr, void *sram_addr, uint32_t len); #endif /*__FLASH_H__*/