35 lines
815 B
C
35 lines
815 B
C
/*
|
|
* inflash.h
|
|
*
|
|
* Created on: 2024年6月24日
|
|
* Author: psx
|
|
*/
|
|
|
|
#ifndef APP_INC_INFLASH_H_
|
|
#define APP_INC_INFLASH_H_
|
|
|
|
#include "debug.h"
|
|
#include "communication_protocol.h"
|
|
|
|
#pragma pack(push,1)
|
|
typedef struct _config_info{
|
|
uint8_t start_Flag[2]; /* 起始标志 */
|
|
uint8_t address[7]; /* 地址 */
|
|
uint8_t end_Flag; /* 结束标志 */
|
|
SL_Head_pack headPack; /* 包头 */
|
|
SL_Tail_pack tailPack; /* 包头 */
|
|
}config_info;
|
|
#define CONFIG_INFO_SIZE (sizeof(config_info))
|
|
#pragma pack(pop)
|
|
|
|
extern config_info g_slConfigInfo;
|
|
|
|
#define FLASH_SAVE_ADDR_BEGIN (0x00)
|
|
#define FLASH_SAVE_ADDR_END (0x00 + CONFIG_INFO_SIZE)
|
|
|
|
void save_config_info(config_info save_config_info);
|
|
uint8_t read_config_info(void);
|
|
|
|
|
|
#endif /* APP_INC_INFLASH_H_ */
|