?? sendframe.nc
字號:
/**
* Low-level abstraction for the transmit path implementaiton of the
* ChipCon CC2420 radio.
*
* @author
* @version
*/
interface Sendframe {
/**
* Send a message
* @return SUCCESS if the request was accepted, FAIL otherwise.
*/
async command error_t send(uint8_t* frame, uint8_t frame_length);
/**
* Signal that a message has been sent
*/
async event void sendDone(error_t error );
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -