radio.h

来自「基于nRF9E5的无线通讯程序,该程序使用LM35做温度检测,并通过915M无线」· C头文件 代码 · 共 24 行

H
24
字号
/*= radio.h ========================================================================================
 *
 * Copyright (C) 2004 Nordic Semiconductor
 *
 * This file is distributed in the hope that it will be useful, but WITHOUT WARRANTY OF ANY KIND.
 *
 * Author(s): Ole Saether
 *
 * $Revision: 3 $
 *
 *==================================================================================================
*/
#ifndef __HOPPING_RADIO_H__
#define __HOPPING_RADIO_H__

unsigned char TransmitPacket(unsigned char *pBuf);
unsigned char ReceivePacket(unsigned char *pBuf);
void ReceiverTimeout(unsigned tOut);
void TransmitterTimeout(unsigned tOut);
void InitReceiver(unsigned char n, unsigned char *pAddr);
void InitTransmitter(unsigned char n, unsigned char *pAddr);

#endif

⌨️ 快捷键说明

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