hpltda5250datacontrol.nc
来自「tinyos2.0版本驱动」· NC 代码 · 共 30 行
NC
30 行
/** * Interface for controlling the data interface of the TDA5250 Radio. * This interface lets you switch between Tx and Rx. * In conjunction to this the HplTda5250Data interface * is used for the actual receiving and sending of data. * * @see HplTda5250Data * @author Philipp Huppertz (huppertz@tkn.tu-berlin.de) */interface HplTda5250DataControl { /** * Sets the radio to transmit. * * @return SUCCESS on success * FAIL otherwise. */ async command error_t setToTx(); /** * Sets the radio to receive. * * @return SUCCESS on success * FAIL otherwise. */ async command error_t setToRx(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?