forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-06-19 6e3f1f560d618b37ee1a47fa2b0f682b70c3ef1c
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _FLASH_H_
#define _FLASH_H_
 
#include "define_all.h"
 
 
void FlashInit(void);
 
ErrorStatus_STM32 Flash_AppPageErase( uint32_t EraseAddr );
ErrorStatus_STM32 Flash_App_Write_String( uint32_t prog_addr,uint32_t* prog_data, uint16_t Len);
 
 
#endif