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

📄 cc2420register.nc

📁 Develop Zigbee network real-time Os
💻 NC
字号:
/*									tab:4 * "Copyright (c) 2005 Stanford University. All rights reserved. * * Permission to use, copy, modify, and distribute this software and * its documentation for any purpose, without fee, and without written * agreement is hereby granted, provided that the above copyright * notice, the following two paragraphs and the author appear in all * copies of this software. *  * IN NO EVENT SHALL STANFORD UNIVERSITY BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN * IF STANFORD UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. *  * STANFORD UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND STANFORD UNIVERSITY * HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, * ENHANCEMENTS, OR MODIFICATIONS." * *//** * Interface representing one of the Read/Write registers on the * CC2420 radio. The return values (when appropriate) refer to the * status byte returned on the CC2420 SO pin. A full list of RW * registers can be found on page 61 of the CC2420 datasheet (rev * 1.2). Page 25 of the same document describes the protocol for * interacting with these registers over the CC2420 SPI bus. * * @author Philip Levis * @version $Revision: 1.1.2.4 $ $Date: 2006/06/20 18:56:04 $ */#include "CC2420.h"interface CC2420Register {  /**   * Read a 16-bit data word from the register.   *   * @param data pointer to place the register value.   * @return status byte from the read.   */  async command cc2420_status_t read(uint16_t* data);  /**   * Write a 16-bit data word to the register.   *    * @param data value to write to register.   * @return status byte from the write.   */  async command cc2420_status_t write(uint16_t data);}

⌨️ 快捷键说明

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