⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systemconst.h

📁 cypress cy3721做的外部无线结点。感知温度后将温度值反给中心结点。
💻 H
字号:
//
//  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -