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

📄 byteradio.java

📁 Contiki is an open source, highly portable, multi-tasking operating system for memory-constrained n
💻 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 timestamp   *          Timestamp information   */  public void receiveByte(byte b, long timestamp);  /**   * @return Last byte transmitted by radio   */  public byte getLastByteTransmitted();  /**   * Returns timestamp information of byte transmitted. This may for example be   * the number of cycles since transmission started.   *    * @return Timestamp info   */  public long getLastByteTransmittedTimestamp();  /**   * @return Last byte received by radio   */  public byte getLastByteReceived();}

⌨️ 快捷键说明

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