📄 protconfig.h
字号:
/************************************************************************************
* Header file containing model for ProtectedConfig structure to access unique 64-bit
* serial number.
*
* (c) Copyright 2006, MaxStream, Inc.
*
************************************************************************************/
#ifndef _PROTCONFIG_H_
#define _PROTCONFIG_H_
#include "ZComDef.h"
#define PROTECTED_CONFIG_ADDR 0xFFEA
typedef struct {
uint8 hardwareVersion_LSB; //1 byte
uint8 hardwareVersion_MSB;
uint8 hardwareRevision_LSB;
uint8 hardwareRevision_MSB;
uint8 softwareCompatibility;
ZLongAddr_t serialNumber;
}_ProtectedConfig;
//Structure for accessing the unique 64-bit serial number programmed into the
//MaxStream Bootloader.
extern _ProtectedConfig ProtectedConfig @PROTECTED_CONFIG_ADDR;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -