Better serial port error handling

This commit is contained in:
Nicholas O'Leary 2013-09-25 15:18:55 +01:00
parent f23762ef9a
commit 6783322e5f
1 changed files with 4 additions and 6 deletions

View File

@ -46,7 +46,6 @@ function SerialOutNode(n) {
return; return;
} }
node.port.on("ready",function() {
node.on("input",function(msg) { node.on("input",function(msg) {
//console.log("{",msg,"}"); //console.log("{",msg,"}");
node.port.write(msg.payload,function(err,res) { node.port.write(msg.payload,function(err,res) {
@ -55,7 +54,6 @@ function SerialOutNode(n) {
} }
}); });
}); });
});
} else { } else {
this.error("missing serial config"); this.error("missing serial config");
} }