serialport
Advanced tools
Comparing version 0.2.7 to 0.2.8
@@ -0,1 +1,5 @@ | ||
Version 0.2.8 | ||
------------- | ||
- BufferSize fix for readstream (thanks jgautier, you rock) | ||
Version 0.2.7 | ||
@@ -2,0 +6,0 @@ ------------- |
{ "name" : "serialport", | ||
"version" : "0.2.7", | ||
"version" : "0.2.8", | ||
"description" : "Welcome your robotic javascript overlords. Better yet, program them!", | ||
@@ -4,0 +4,0 @@ "author": "Chris Williams <voodootikigod@gmail.com>", |
@@ -15,3 +15,3 @@ <pre> | ||
Version: 0.2.7 - Released June 28, 2011 | ||
Version: 0.2.8 - Released July 8, 2011 | ||
@@ -18,0 +18,0 @@ ***** |
@@ -79,3 +79,3 @@ "use strict"; | ||
} else { | ||
this.readStream = fs.createReadStream(this.port); | ||
this.readStream = fs.createReadStream(this.port,{bufferSize:options.buffersize}); | ||
var dataCallback = (function (me) { | ||
@@ -82,0 +82,0 @@ return (function (buffer) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21741