?? hpltda5250datacontrol.nc
字號:
/**
* 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -