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

📄 byteradio.java

📁 传感器网络操作系统contiki。 被广泛应用于环境检测、结构健康监测等等。包括路由协议
💻 JAVA
字号:
package se.sics.cooja.interfaces;/** * A byte radio is able to transmit and receive radio data on a byte level. *  * The byte radio is a lower abstraction level than the packet radio and should, * according to the bottom-up abstraction policy, implement the packet * abstraction level. *  * @author Fredrik Osterlind */public interface ByteRadio extends PacketRadio {  /**   * Radio receives given byte.   *    * @param b   *          Byte   * @param delay   *          Delay cycle information   */  public void receiveByte(byte b, long delay);  /**   * @return Last byte transmitted by radio   */  public byte getLastByteTransmitted();  /**   * Returns number of cycles since last byte was transmitted.   *    * @return Timestamp info   */  public long getLastByteTransmittedDelay();  /**   * @return Last byte received by radio   */  public byte getLastByteReceived();}

⌨️ 快捷键说明

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