50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
|
/*
|
|||
|
* inflash.h
|
|||
|
*
|
|||
|
* Created on: 2024<EFBFBD><EFBFBD>6<EFBFBD><EFBFBD>24<EFBFBD><EFBFBD>
|
|||
|
* Author: psx
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef APP_INC_INFLASH_H_
|
|||
|
#define APP_INC_INFLASH_H_
|
|||
|
|
|||
|
#include "debug.h"
|
|||
|
|
|||
|
#pragma pack(push,1)
|
|||
|
typedef struct _config_info{
|
|||
|
uint8_t start_Flag[2]; /* <20><>ʼ<EFBFBD><CABC>־ */
|
|||
|
uint8_t address[7]; /* <20><>ַ */
|
|||
|
uint8_t end_Flag; /* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־ */
|
|||
|
uint16_t Access_Node_Type; /* <20><><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
uint16_t Communication_Methods; /* ͨ<>ŷ<EFBFBD>ʽ */
|
|||
|
uint32_t bat485_Baud; /* <20><><EFBFBD>ڲ<EFBFBD><DAB2><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
uint32_t gw485_Baud; /* <20><><EFBFBD>ڲ<EFBFBD><DAB2><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
}config_info;
|
|||
|
#define CONFIG_INFO_SIZE (sizeof(config_info))
|
|||
|
#pragma pack(pop)
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
typedef enum
|
|||
|
{
|
|||
|
POWERBOX = 1, /* <20><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD> */
|
|||
|
MICROMETEOROLOGY = 2, /* <><CEA2><EFBFBD><EFBFBD> */
|
|||
|
}SL_ACCESSNODETYPE;
|
|||
|
|
|||
|
/* ͨ<>ŷ<EFBFBD>ʽ */
|
|||
|
typedef enum
|
|||
|
{
|
|||
|
RS485 = 1,
|
|||
|
RJ45 = 2,
|
|||
|
}SL_COMMUNICATIONMETHODS;
|
|||
|
|
|||
|
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_ */
|