25 lines
668 B
C
25 lines
668 B
C
/*
|
|
*********************************************************************************************************
|
|
* IAR Development Kits
|
|
* on the
|
|
*
|
|
* M451
|
|
*
|
|
* Filename : flash_config.h
|
|
* Version : V1.00
|
|
* Programmer(s) : Qian Xianghong
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#include "type.h"
|
|
|
|
#ifndef USER_FLASH_CONFIG_PRESENT
|
|
#define USER_FLASH_CONFIG_PRESENT
|
|
|
|
void Config_Init();
|
|
void Config_Open();
|
|
uint32_t Config_LoadConfig();
|
|
uint32_t Config_SaveConfig();
|
|
|
|
#endif
|