ultrasoundcontrol.nc
来自「无线传感器网络中的节点定位算法。详见ReadMe文件。在TinyOS上实现的节点」· NC 代码 · 共 15 行
NC
15 行
/** * Cricket v2 Ultrasound Control interface. * @author David Moore */interface UltrasoundControl{ async command result_t StartDetector(uint16_t timeout); async command result_t StopDetector(); async event result_t PulseDetected(uint16_t time); async event result_t DetectorTimeout(); command result_t SetGain(uint8_t val); async command result_t SendPulse();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?