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

📄 testmsg.h

📁 tinyos最新版
💻 H
字号:
// message format for testing the physical layer -- PhyRadio#ifndef TEST_MSG#define TEST_MSG// include physical layer header defination#include "PhyRadioMsg.h"typedef struct {	PhyHeader hdr;   // include lower-layer header first	uint8_t seqNo;} AppHeader;/* AppHeader should be the same as the sender */typedef struct {	AppHeader hdr;	char data[20];	int16_t crc;   // crc must be the last field -- required by PhyRadio} AppPkt;#endif

⌨️ 快捷键说明

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