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

📄 phy_const.h

📁 802.15.4协议的实现
💻 H
字号:
/*
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 */
// The PHY constants are defined here.
#define aMaxPHYPacketSize  127
#define aTurnaroundTime 12

#define INIT_CURRENTCHANNEL 0x15
#define INIT_CHANNELSSUPPORTED 0x0
#define INIT_TRANSMITPOWER 15
#define INIT_CCA_MODE 0

// PHY PIB attribute and psdu
typedef struct
{
	uint8_t phyCurrentChannel;
	uint8_t phyChannelsSupported;
	uint8_t phyTransmitPower;
	uint8_t phyCcaMode;
} phyPIB;

⌨️ 快捷键说明

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