Socket
Socket
Sign inDemoInstall

serialport

Package Overview
Dependencies
Maintainers
1
Versions
175
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serialport - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

arduinoTest/arduinoEcho.ino

5

changelog.md

@@ -0,1 +1,6 @@

Version 1.2.4
-------------
- Resolved parity error under linux as reported here: https://github.com/voodootikigod/node-serialport/issues/219
Version 1.1.3

@@ -2,0 +7,0 @@ -------------

16

package.json
{
"name": "serialport",
"version": "1.2.3",
"version": "1.2.4",
"description": "Welcome your robotic javascript overlords. Better yet, program them!",

@@ -42,7 +42,11 @@ "author": {

"chai": "*",
"sinon-chai": "~2.4.0",
"sinon": "~1.7.3"
"sinon-chai": "*",
"sinon": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-mocha-test": "*",
"grunt-contrib-jshint": "*"
},
"engines": {
"node": ">= 0.10.0"
"node": "0.10.x"
},

@@ -54,4 +58,4 @@ "bin": {

"scripts": {
"test": "mocha -R spec"
"test": "grunt --verbose"
}
}
}

@@ -15,4 +15,6 @@ ```

Version: 1.1.3 - Released July 29, 2013
[![Build Status](https://travis-ci.org/voodootikigod/node-serialport.png?branch=master)](https://travis-ci.org/voodootikigod/node-serialport)
Version: 1.2.4 - Released November 5, 2013
*****

@@ -36,3 +38,3 @@

* [devicestack](https://github.com/adrai/devicestack) - This module helps you to represent a device and its protocol.
* [reflecta](https://github.com/jbeavers/reflecta) A communication protocol that combines Arduino Libraries and NodeJS into an integrated system.
* [reflecta](https://github.com/JayBeavers/Reflecta) A communication protocol that combines Arduino Libraries and NodeJS into an integrated system.

@@ -234,2 +236,2 @@ For getting started with node-serialport, we recommend you begin with the following articles:

Enjoy and do cool things with this code.
Enjoy and do cool things with this code.

@@ -16,444 +16,513 @@ /*jslint node: true */

// Removing check for valid BaudRates due to ticket: #140
// var BAUDRATES = [500000, 230400, 115200, 57600, 38400, 19200, 9600, 4800, 2400, 1800, 1200, 600, 300, 200, 150, 134, 110, 75, 50];
function SerialPortFactory() {
var factory = this;
// VALIDATION ARRAYS
var DATABITS = [5, 6, 7, 8];
var STOPBITS = [1, 1.5, 2];
var PARITY = ['none', 'even', 'mark', 'odd', 'space'];
var FLOWCONTROLS = ["XON", "XOFF", "XANY", "RTSCTS"];
// Removing check for valid BaudRates due to ticket: #140
// var BAUDRATES = [500000, 230400, 115200, 57600, 38400, 19200, 9600, 4800, 2400, 1800, 1200, 600, 300, 200, 150, 134, 110, 75, 50];
// VALIDATION ARRAYS
var DATABITS = [5, 6, 7, 8];
var STOPBITS = [1, 1.5, 2];
var PARITY = ['none', 'even', 'mark', 'odd', 'space'];
var FLOWCONTROLS = ["XON", "XOFF", "XANY", "RTSCTS"];
// Stuff from ReadStream, refactored for our usage:
var kPoolSize = 40 * 1024;
var kMinPoolSpace = 128;
var pool;
function allocNewPool() {
pool = new Buffer(kPoolSize);
pool.used = 0;
}
// Stuff from ReadStream, refactored for our usage:
var kPoolSize = 40 * 1024;
var kMinPoolSpace = 128;
var pool;
var parsers = {
raw: function (emitter, buffer) {
emitter.emit("data", buffer);
},
//encoding: ascii utf8 utf16le ucs2 base64 binary hex
//More: http://nodejs.org/api/buffer.html#buffer_buffer
readline: function (delimiter, encoding) {
if (typeof delimiter === "undefined" || delimiter === null) { delimiter = "\r"; }
if (typeof encoding === "undefined" || encoding === null) { encoding = "utf8"; }
// Delimiter buffer saved in closure
var data = "";
return function (emitter, buffer) {
// Collect data
data += buffer.toString(encoding);
// Split collected data by delimiter
var parts = data.split(delimiter);
data = parts.pop();
parts.forEach(function (part, i, array) {
emitter.emit('data', part);
});
};
function allocNewPool() {
pool = new Buffer(kPoolSize);
pool.used = 0;
}
};
// The default options, can be overwritten in the 'SerialPort' constructor
var _options = {
baudrate: 9600,
parity: 'none',
rtscts: false,
xon: false,
xoff: false,
xany: false,
databits: 8,
stopbits: 1,
buffersize: 256,
parser: parsers.raw
};
var parsers = {
raw: function (emitter, buffer) {
emitter.emit("data", buffer);
},
//encoding: ascii utf8 utf16le ucs2 base64 binary hex
//More: http://nodejs.org/api/buffer.html#buffer_buffer
readline: function (delimiter, encoding) {
if (typeof delimiter === "undefined" || delimiter === null) { delimiter = "\r"; }
if (typeof encoding === "undefined" || encoding === null) { encoding = "utf8"; }
// Delimiter buffer saved in closure
var data = "";
return function (emitter, buffer) {
// Collect data
data += buffer.toString(encoding);
// Split collected data by delimiter
var parts = data.split(delimiter);
data = parts.pop();
parts.forEach(function (part, i, array) {
emitter.emit('data', part);
});
};
}
};
function SerialPort (path, options, openImmediately, callback) {
// The default options, can be overwritten in the 'SerialPort' constructor
var _options = {
baudrate: 9600,
parity: 'none',
rtscts: false,
xon: false,
xoff: false,
xany: false,
databits: 8,
stopbits: 1,
buffersize: 256,
parser: parsers.raw
};
var args = Array.prototype.slice.call(arguments);
callback = args.pop();
if (typeof(callback) !== 'function') {
callback = null;
}
function SerialPort (path, options, openImmediately, callback) {
options = options || {};
openImmediately = (openImmediately === undefined || openImmediately === null) ? true : openImmediately;
var self = this;
var self = this;
var args = Array.prototype.slice.call(arguments);
callback = args.pop();
if (typeof(callback) !== 'function') {
callback = null;
}
stream.Stream.call(this);
options = options || {};
openImmediately = (openImmediately === undefined || openImmediately === null) ? true : openImmediately;
var err;
stream.Stream.call(this);
options.baudRate = options.baudRate || options.baudrate || _options.baudrate;
// Removing check for valid BaudRates due to ticket: #140
// if (BAUDRATES.indexOf(options.baudrate) == -1) {
// throw new Error('Invalid "baudrate": ' + options.baudrate);
// }
callback = callback || function (err) {
if (err) {
factory.emit('error', err);
}
};
options.dataBits = options.dataBits || options.databits || _options.databits;
if (DATABITS.indexOf(options.dataBits) == -1) {
err = new Error('Invalid "databits": ' + options.dataBits);
if (callback) {
var err;
options.baudRate = options.baudRate || options.baudrate || _options.baudrate;
// Removing check for valid BaudRates due to ticket: #140
// if (BAUDRATES.indexOf(options.baudrate) == -1) {
// throw new Error('Invalid "baudrate": ' + options.baudrate);
// }
options.dataBits = options.dataBits || options.databits || _options.databits;
if (DATABITS.indexOf(options.dataBits) == -1) {
err = new Error('Invalid "databits": ' + options.dataBits);
callback(err);
} else {
// TODO: emit error event
return;
}
}
options.stopBits = options.stopBits || options.stopbits || _options.stopbits;
if (STOPBITS.indexOf(options.stopBits) == -1) {
err = new Error('Invalid "stopbits": ' + options.stopbits);
if (callback) {
options.stopBits = options.stopBits || options.stopbits || _options.stopbits;
if (STOPBITS.indexOf(options.stopBits) == -1) {
err = new Error('Invalid "stopbits": ' + options.stopbits);
callback(err);
} else {
// TODO: emit error event
return;
}
}
options.parity = options.parity || _options.parity;
if (PARITY.indexOf(options.parity) == -1) {
err = new Error('Invalid "parity": ' + options.parity);
if (callback) {
options.parity = options.parity || _options.parity;
if (PARITY.indexOf(options.parity) == -1) {
err = new Error('Invalid "parity": ' + options.parity);
callback(err);
} else {
// TODO: emit error event
return;
}
}
if (!path) {
err = new Error('Invalid port specified: ' + path);
if (callback) {
if (!path) {
err = new Error('Invalid port specified: ' + path);
callback(err);
} else {
// TODO: emit error event
return;
}
}
// flush defaults, then update with provided details
options.rtscts = _options.rtscts;
options.xon = _options.xon;
options.xoff = _options.xoff;
options.xany = _options.xany;
if (options.flowControl || options.flowcontrol) {
var fc = options.flowControl || options.flowcontrol;
// flush defaults, then update with provided details
options.rtscts = _options.rtscts;
options.xon = _options.xon;
options.xoff = _options.xoff;
options.xany = _options.xany;
if (typeof fc == 'boolean') {
options.rtscts = true;
} else {
fc.forEach(function (flowControl) {
var fcup = flowControl.toUpperCase();
var idx = FLOWCONTROLS.indexOf(fcup);
if (idx < 0) {
var err = new Error('Invalid "flowControl": ' + fcup + ". Valid options: "+FLOWCONTROLS.join(", "));
if (callback) {
if (options.flowControl || options.flowcontrol) {
var fc = options.flowControl || options.flowcontrol;
if (typeof fc == 'boolean') {
options.rtscts = true;
} else {
fc.forEach(function (flowControl) {
var fcup = flowControl.toUpperCase();
var idx = FLOWCONTROLS.indexOf(fcup);
if (idx < 0) {
var err = new Error('Invalid "flowControl": ' + fcup + ". Valid options: "+FLOWCONTROLS.join(", "));
callback(err);
return;
} else {
// TODO: emit error event
}
} else {
// "XON", "XOFF", "XANY", "DTRDTS", "RTSCTS"
switch (idx) {
case 0: options.xon = true; break;
case 1: options.xoff = true; break;
case 2: options.xany = true; break;
case 3: options.rtscts = true; break;
// "XON", "XOFF", "XANY", "DTRDTS", "RTSCTS"
switch (idx) {
case 0: options.xon = true; break;
case 1: options.xoff = true; break;
case 2: options.xany = true; break;
case 3: options.rtscts = true; break;
}
}
}
});
});
}
}
}
options.bufferSize = options.bufferSize || options.buffersize || _options.buffersize;
options.parser = options.parser || _options.parser;
options.bufferSize = options.bufferSize || options.buffersize || _options.buffersize;
options.parser = options.parser || _options.parser;
options.dataCallback = function (data) {
options.parser(self, data);
};
options.dataCallback = options.dataCallback || function (data) {
options.parser(self, data);
};
// options.dataReadyCallback = function () {
// self.readStream._read(4024);
// };
// options.dataReadyCallback = function () {
// self.readStream._read(4024);
// };
options.errorCallback = function (err) {
self.emit('error', err);
};
options.disconnectedCallback = function () {
if (self.closing) {
return;
options.disconnectedCallback = options.disconnectedCallback || function () {
if (self.closing) {
return;
}
var err = new Error("Disconnected");
callback(err);
// self.close();
};
if (process.platform == 'win32') {
path = '\\\\.\\' + path;
} else {
// All other platforms:
this.fd = null;
this.paused = true;
this.bufferSize = options.bufferSize || 64 * 1024;
this.readable = true;
this.reading = false;
if (options.encoding)
this.setEncoding(this.encoding);
}
var err = new Error("Disconnected");
self.options.errorCallback(err);
// self.close();
};
if (process.platform == 'win32') {
path = '\\\\.\\' + path;
} else {
// All other platforms:
this.fd = null;
this.options = options;
this.path = path;
if (openImmediately) {
process.nextTick(function () {
self.open(callback);
});
}
}
util.inherits(SerialPort, stream.Stream);
SerialPort.prototype.open = function (callback) {
var self = this;
this.paused = true;
this.bufferSize = options.bufferSize || 64 * 1024;
this.readable = true;
this.reading = false;
factory.SerialPortBinding.open(this.path, this.options, function (err, fd) {
self.fd = fd;
if (err) {
if (callback) {
callback(err);
} else {
self.emit('error', err);
}
return;
}
if (process.platform !== 'win32') {
// self.readStream = new SerialStream(self.fd, { bufferSize: self.options.bufferSize });
// self.readStream.on("data", self.options.dataCallback);
// self.readStream.on("error", self.options.errorCallback);
// self.readStream.on("close", function () {
// self.close();
// });
// self.readStream.on("end", function () {
// console.log(">>END");
// self.emit('end');
// });
// self.readStream.resume();
self.paused = false;
self.serialPoller = new factory.SerialPortBinding.SerialportPoller(self.fd, function() {self._read();});
self.serialPoller.start();
}
if (options.encoding)
this.setEncoding(this.encoding);
}
this.options = options;
this.path = path;
if (openImmediately) {
process.nextTick(function () {
self.open();
self.emit('open');
if (callback) { callback(); }
});
}
}
};
util.inherits(SerialPort, stream.Stream);
SerialPort.prototype.open = function (callback) {
var self = this;
SerialPortBinding.open(this.path, this.options, function (err, fd) {
self.fd = fd;
if (err) {
self.options.errorCallback(err);
if (callback) { callback(err); }
SerialPort.prototype.write = function (buffer, callback) {
var self = this;
if (!this.fd) {
var err = new Error("Serialport not open.");
if (callback) {
callback(err);
} else {
self.emit('error', err);
}
return;
}
if (process.platform !== 'win32') {
// self.readStream = new SerialStream(self.fd, { bufferSize: self.options.bufferSize });
// self.readStream.on("data", self.options.dataCallback);
// self.readStream.on("error", self.options.errorCallback);
// self.readStream.on("close", function () {
// self.close();
// });
// self.readStream.on("end", function () {
// console.log(">>END");
// self.emit('end');
// });
// self.readStream.resume();
self.paused = false;
self.serialPoller = new SerialPortBinding.SerialportPoller(self.fd, function() {self._read();});
self.serialPoller.start();
if (!Buffer.isBuffer(buffer)) {
buffer = new Buffer(buffer);
}
factory.SerialPortBinding.write(this.fd, buffer, function (err, results) {
if (callback) {
callback(err, results);
} else {
if (err) {
self.emit('error', err);
}
}
});
};
self.emit('open');
if (callback) { callback(err); }
});
};
if (process.platform !== 'win32') {
SerialPort.prototype._read = function() {
var self = this;
SerialPort.prototype.write = function (buffer, callback) {
var self = this;
if (!this.fd) {
var err = new Error("Serialport not open.");
self.options.errorCallback(err);
if (callback) {
callback(err);
}
return;
}
// console.log(">>READ");
if (!self.readable || self.paused || self.reading) return;
if (!Buffer.isBuffer(buffer)) {
buffer = new Buffer(buffer);
}
SerialPortBinding.write(this.fd, buffer, function (err, results) {
if (err) {
self.options.errorCallback(err);
}
if (callback) {
callback(err, results);
}
});
};
self.reading = true;
if (process.platform !== 'win32') {
SerialPort.prototype._read = function() {
var self = this;
if (!pool || pool.length - pool.used < kMinPoolSpace) {
// discard the old pool. Can't add to the free list because
// users might have refernces to slices on it.
pool = null;
allocNewPool();
}
// console.log(">>READ");
if (!self.readable || self.paused || self.reading) return;
// Grab another reference to the pool in the case that while we're in the
// thread pool another read() finishes up the pool, and allocates a new
// one.
var thisPool = pool;
var toRead = Math.min(pool.length - pool.used, ~~self.bufferSize);
var start = pool.used;
self.reading = true;
function afterRead(err, bytesRead, readPool, bytesRequested) {
self.reading = false;
if (err) {
if (err.code && err.code == 'EAGAIN') {
if (self.fd >= 0)
self.serialPoller.start();
} else {
self.fd = null;
self.emit('error', err);
self.readable = false;
}
}
if (!pool || pool.length - pool.used < kMinPoolSpace) {
// discard the old pool. Can't add to the free list because
// users might have refernces to slices on it.
pool = null;
allocNewPool();
}
// Since we will often not read the number of bytes requested,
// let's mark the ones we didn't need as available again.
pool.used -= bytesRequested - bytesRead;
// Grab another reference to the pool in the case that while we're in the
// thread pool another read() finishes up the pool, and allocates a new
// one.
var thisPool = pool;
var toRead = Math.min(pool.length - pool.used, ~~self.bufferSize);
var start = pool.used;
// console.log(">>ACTUALLY READ: ", bytesRead);
function afterRead(err, bytesRead, readPool, bytesRequested) {
self.reading = false;
if (err) {
if (err.code && err.code == 'EAGAIN') {
if (bytesRead === 0) {
if (self.fd >= 0)
self.serialPoller.start();
} else {
self.fd = null;
self.options.errorCallback(err);
self.readable = false;
return;
var b = thisPool.slice(start, start + bytesRead);
// do not emit events if the stream is paused
if (self.paused) {
self.buffer = Buffer.concat([self.buffer, b]);
return;
} else {
self._emitData(b);
}
// do not emit events anymore after we declared the stream unreadable
if (!self.readable) return;
self._read();
}
}
// Since we will often not read the number of bytes requested,
// let's mark the ones we didn't need as available again.
pool.used -= bytesRequested - bytesRead;
// console.log(">>REQUEST READ: ", toRead);
fs.read(self.fd, pool, pool.used, toRead, self.pos, function(err, bytesRead){
var readPool = pool;
var bytesRequested = toRead;
afterRead(err, bytesRead, readPool, bytesRequested);}
);
// console.log(">>ACTUALLY READ: ", bytesRead);
pool.used += toRead;
};
if (bytesRead === 0) {
if (self.fd >= 0)
self.serialPoller.start();
} else {
var b = thisPool.slice(start, start + bytesRead);
// do not emit events if the stream is paused
if (self.paused) {
self.buffer = Buffer.concat([self.buffer, b]);
return;
} else {
self._emitData(b);
}
// do not emit events anymore after we declared the stream unreadable
if (!self.readable) return;
self._read();
SerialPort.prototype._emitData = function(d) {
var self = this;
// if (self._decoder) {
// var string = self._decoder.write(d);
// if (string.length) self.options.dataCallback(string);
// } else {
self.options.dataCallback(d);
// }
};
SerialPort.prototype.pause = function() {
var self = this;
self.paused = true;
};
SerialPort.prototype.resume = function() {
var self = this;
self.paused = false;
if (self.buffer) {
var buffer = self.buffer;
self.buffer = null;
self._emitData(buffer);
}
}
// console.log(">>REQUEST READ: ", toRead);
fs.read(self.fd, pool, pool.used, toRead, self.pos, function(err, bytesRead){
var readPool = pool;
var bytesRequested = toRead;
afterRead(err, bytesRead, readPool, bytesRequested);}
);
// No longer open?
if (null === self.fd)
return;
pool.used += toRead;
};
self._read();
};
SerialPort.prototype._emitData = function(d) {
var self = this;
// if (self._decoder) {
// var string = self._decoder.write(d);
// if (string.length) self.options.dataCallback(string);
// } else {
self.options.dataCallback(d);
// }
};
SerialPort.prototype.pause = function() {
var self = this;
self.paused = true;
};
} // if !'win32'
SerialPort.prototype.resume = function() {
SerialPort.prototype.close = function (callback) {
var self = this;
self.paused = false;
if (self.buffer) {
var buffer = self.buffer;
self.buffer = null;
self._emitData(buffer);
}
var fd = self.fd;
// No longer open?
if (null === self.fd)
if (self.closing) {
return;
}
if (!fd) {
var err = new Error("Serialport not open.");
if (callback) {
callback(err);
} else {
self.emit('error', err);
}
return;
}
self._read();
};
self.closing = true;
try {
if (self.readStream) {
// Make sure we clear the readStream's fd, or it'll try to close() it.
// We already close()d it.
self.readStream.fd = null;
self.readStream.destroy();
}
} // if !'win32'
factory.SerialPortBinding.close(fd, function (err) {
SerialPort.prototype.close = function (callback) {
var self = this;
var fd = self.fd;
if (err) {
if (callback) {
callback(err);
} else {
self.emit('error', err);
}
return;
}
if (self.closing) {
return;
}
if (!fd) {
var err = new Error("Serialport not open.");
self.options.errorCallback(err);
if (callback) {
callback(err);
}
return;
}
self.emit('close');
self.removeAllListeners();
self.closing = false;
self.fd = 0;
self.closing = true;
try {
if (self.readStream) {
// Make sure we clear the readStream's fd, or it'll try to close() it.
// We already close()d it.
self.readStream.fd = null;
self.readStream.destroy();
if (process.platform !== 'win32') {
self.readable = false;
self.serialPoller.close();
}
if (callback) {
callback();
}
});
} catch (ex) {
self.closing = false;
if (callback) {
callback(ex);
} else {
self.emit('error', ex);
}
}
};
SerialPortBinding.close(fd, function (err) {
function listUnix (callback) {
fs.readdir("/dev/serial/by-id", function (err, files) {
if (err) {
self.options.errorCallback(err);
// if this directory is not found this could just be because it's not plugged in
if (err.errno === 34) {
return callback(null, []);
}
if (callback) {
callback(err);
} else {
factory.emit('error', err);
}
return;
}
self.emit('close');
self.removeAllListeners();
self.closing = false;
self.fd = 0;
if (process.platform !== 'win32') {
self.readable = false;
self.serialPoller.close();
}
if (callback) {
callback();
}
var dirName = "/dev/serial/by-id";
async.map(files, function (file, callback) {
var fileName = path.join(dirName, file);
fs.readlink(fileName, function (err, link) {
if (err) {
if (callback) {
callback(err);
} else {
factory.emit('error', err);
}
return;
}
link = path.resolve(dirName, link);
callback(null, {
comName: link,
manufacturer: undefined,
pnpId: file
});
});
// Suspect code per ticket: #104 removed for deeper inspection.
// fs.readdir("/dev/serial/by-path", function(err_path, paths) {
// if (err_path) {
// if (err.errno === 34) return callback(null, []);
// return console.log(err);
// }
// var dirName, items;
// //check if multiple devices of the same id are connected
// if (files.length !== paths.length) {
// dirName = "/dev/serial/by-path";
// items = paths;
// } else {
// dirName = "/dev/serial/by-id";
// items = files;
// }
// async.map(items, function (file, callback) {
// var fileName = path.join(dirName, file);
// fs.readlink(fileName, function (err, link) {
// if (err) {
// return callback(err);
// }
// link = path.resolve(dirName, link);
// callback(null, {
// comName: link,
// manufacturer: undefined,
// pnpId: file
// });
// });
// }, callback);
}, callback);
});
} catch (ex) {
self.closing = false;
self.options.errorCallback(ex);
if (callback) {
callback(ex);
}
}
};
function listUnix (callback) {
fs.readdir("/dev/serial/by-id", function (err, files) {
if (err) {
// if this directory is not found this could just be because it's not plugged in
if (err.errno === 34) {
return callback(null, []);
}
SerialPort.prototype.flush = function (callback) {
var self = this;
var fd = self.fd;
// TODO: emit error event
if (!fd) {
var err = new Error("Serialport not open.");
if (callback) {
callback(err);
} else {
self.emit('error', err);
}

@@ -463,88 +532,29 @@ return;

var dirName = "/dev/serial/by-id";
async.map(files, function (file, callback) {
var fileName = path.join(dirName, file);
fs.readlink(fileName, function (err, link) {
if (err) {
// TODO: emit error event
if (callback) {
callback(err);
}
return;
factory.SerialPortBinding.flush(fd, function (err, result) {
if (err) {
if (callback) {
callback(err, result);
} else {
self.emit('error', err);
}
}
});
};
link = path.resolve(dirName, link);
callback(null, {
comName: link,
manufacturer: undefined,
pnpId: file
});
});
// Suspect code per ticket: #104 removed for deeper inspection.
// fs.readdir("/dev/serial/by-path", function(err_path, paths) {
// if (err_path) {
// if (err.errno === 34) return callback(null, []);
// return console.log(err);
// }
factory.SerialPort = SerialPort;
factory.parsers = parsers;
factory.SerialPortBinding = SerialPortBinding;
// var dirName, items;
// //check if multiple devices of the same id are connected
// if (files.length !== paths.length) {
// dirName = "/dev/serial/by-path";
// items = paths;
// } else {
// dirName = "/dev/serial/by-id";
// items = files;
// }
if (process.platform === 'win32') {
factory.list = SerialPortBinding.list;
} else if (process.platform === 'darwin') {
factory.list = SerialPortBinding.list;
} else {
factory.list = listUnix;
}
// async.map(items, function (file, callback) {
// var fileName = path.join(dirName, file);
// fs.readlink(fileName, function (err, link) {
// if (err) {
// return callback(err);
// }
// link = path.resolve(dirName, link);
// callback(null, {
// comName: link,
// manufacturer: undefined,
// pnpId: file
// });
// });
// }, callback);
}, callback);
});
}
if (process.platform === 'win32') {
exports.list = SerialPortBinding.list;
} else if (process.platform === 'darwin') {
exports.list = SerialPortBinding.list;
} else {
exports.list = listUnix;
}
util.inherits(SerialPortFactory, EventEmitter);
SerialPort.prototype.flush = function (callback) {
var self = this;
var fd = self.fd;
if (!fd) {
var err = new Error("Serialport not open.");
self.options.errorCallback(err);
if (callback) {
callback(err);
}
}
SerialPortBinding.flush(fd, function (err, result) {
if (err) {
self.options.errorCallback(err);
}
if (callback) {
callback(err, result);
}
});
};
module.exports.SerialPort = SerialPort;
module.exports.parsers = parsers;
module.exports = new SerialPortFactory();

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc