forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-04-30 ee3c90168f81ce19529904d80f9c9de4fed23bb8
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