📄 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 );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -