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
|
|