Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

serialport

Package Overview
Dependencies
Maintainers
0
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 0.2.3 to 0.2.4

._changelog.md

6

._package.json

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR� ���"�"com.macromates.caret{
column = 22;
line = 1;
Mac OS X  2��ATTR�P���"�"com.macromates.caret{
column = 0;
line = 11;
}

@@ -0,1 +1,11 @@

Version 0.2.4
-------------
- Integrated arduino tests (rwaldron)
- Integrated options bug fix (w1nk)
- Integrated hardware flow control for crazier serial port action (w1nk)
Version 0.2.3
-------------
- Something amazing that has since been lost and forgotten.
Version 0.2.2

@@ -2,0 +12,0 @@ -------------

{ "name" : "serialport",
"version" : "0.2.3",
"version" : "0.2.4",
"description" : "Welcome your robotic javascript overlords. Better yet, program them!",

@@ -4,0 +4,0 @@ "author": "Chris Williams <voodootikigod@gmail.com>",

@@ -18,4 +18,4 @@ "use strict";

var PARITY = [0, 1, 2];
var FLOWCONTROL = [0, 1];
var parsers = {

@@ -56,2 +56,3 @@ raw: function (emitter, buffer) {

parity: 0,
flowcontrol: 0,
buffersize: 255,

@@ -76,2 +77,5 @@ parser: parsers.raw

}
if (FLOWCONTROL.indexOf(options.flowcontrol) == -1) {
throw new Error('Invalid "flowcontrol": ' + options.flowcontrol);
}

@@ -81,3 +85,3 @@ stream.Stream.call(this);

this.port = path;
this.fd = serialport_native.open(this.port, options.baudrate, options.databits, options.stopbits, options.parity);
this.fd = serialport_native.open(this.port, options.baudrate, options.databits, options.stopbits, options.parity, options.flowcontrol);

@@ -84,0 +88,0 @@ this.readWatcher = new IOWatcher();

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