osd-contiki/regression-tests/02-hello-world/hello-world.js

10 lines
131 B
JavaScript

TIMEOUT(5000);
while(true) {
log.log("> " + msg + "\n");
if (msg.equals('Hello, world')) {
log.testOK();
}
YIELD();
}