24 lines
662 B
C
24 lines
662 B
C
/**
|
|
******************************************************************************
|
|
* @file User\Driver\flash_config.h
|
|
* @author 路淮
|
|
* @version v0.1
|
|
* @date 2026-05-21
|
|
* @brief Flash读写配置头文件
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef _FLASH_CONFIG_H__
|
|
#define _FLASH_CONFIG_H__
|
|
|
|
#include "drv_flash.h"
|
|
|
|
|
|
void stm_flash_init(void);
|
|
int8_t stm_flash_read(uint8_t *pbuf, uint8_t frame_type);
|
|
int8_t stm_flash_write(uint8_t *pbuf, uint16_t size, uint8_t frame_type);
|
|
|
|
extern flash_manage_t stm_flash_manage; // 声明flash管理结构体
|
|
|
|
#endif /* _FLASH_CONFIG_H__ */
|