systemconst.h

来自「cypress cy3721做的外部无线结点。感知温度后将温度值反给中心结点。」· C头文件 代码 · 共 37 行

H
37
字号
//
//  SystemConst.h
//
//     Defines system constant structure

#ifndef SYSTEMCONST_H
#define SYSTEMCONST_H

#include "m8c.h"
#include "CMXSystemFunction.h"


#define RESERVED_BLOCK_SIZE 2 // This is the number of bytes of flash reserved

typedef struct
{
	struct	{		SETPOINT_ELEM_CONST_STRUC const SetPointParam0;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam1;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam2;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam3;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam4;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam5;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam6;
		SETPOINT_ELEM_CONST_STRUC const SetPointParam7;
	} pse_TempRange_SetPointRegion;

	struct
	{
		char title[RESERVED_BLOCK_SIZE];
	} ReserveBlock;
} SYSTEM_CONSTANT_STRUC;

// overall count oF integer values contained in the constant structure
#define SYSTEM_CONST_COUNT 34

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?