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

📄 protconfig.h

📁 nRF24E1 sample xBee development
💻 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 "DigiType.h"

#define PROTECTED_CONFIG_ADDR 0xFFEA

typedef struct {
   uint8_t hardwareVersion_LSB;  //1 byte
   uint8_t hardwareVersion_MSB; 
   uint8_t hardwareRevision_LSB;
   uint8_t hardwareRevision_MSB;
   uint8_t softwareCompatibility;
   uint8_t serialNumber[8];
}_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 + -