forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-06-11 e4424eb6b50d0300583c422dfb71d58e040f4b9e
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