serialipprotocol
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -0,3 +1,7 @@ | ||
Version: 0.1.1 | ||
------------ | ||
- Bug fixes | ||
Version: 0.1.0 | ||
------------ | ||
- Initial commit |
{ | ||
"name": "serialipprotocol", | ||
"description": "Routine to read a CSV stream to make tags available to honcho application", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Dana Moffit", |
@@ -232,2 +232,12 @@ // NodeSerialIP - A library for communication to Siemens PLCs from node.js. | ||
NodeSerialIP.prototype.writeItems = function(arg, value, cb) { | ||
var self = this; | ||
outputLog("Write called on SerialIP driver - write not supported", 0, self.connectionID); | ||
if (typeof(cb) === 'function') { | ||
process.nextTick(function() { | ||
cb(true); | ||
}); | ||
} | ||
} | ||
NodeSerialIP.prototype.onTCPConnect = function() { | ||
@@ -474,3 +484,3 @@ var self = this, connBuf; | ||
self.globalReadBlockList[i].value = self.globalReadBlockList[i].badValue(); | ||
self.globalReadBlockList[i].quality = 'BAD'; | ||
self.globalReadBlockList[i].quality = 'BAD 255'; | ||
} | ||
@@ -477,0 +487,0 @@ } |
28042
638