📄 reprogramguardp.nc
字号:
// TODO(henrik) implement.
module ReprogramGuardP
{
provides interface ReprogramGuard;
}
implementation
{
enum {
VTHRESH = 0x0, // 0V
};
task void sendOk()
{
signal ReprogramGuard.okToProgramDone(true);
}
command error_t ReprogramGuard.okToProgram()
{
post sendOk();
return SUCCESS;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -