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