Add 230400 baud to default serialport options

This commit is contained in:
Dave Conway-Jones 2021-11-15 11:17:56 +00:00
parent ccdc125818
commit b0cc103f10
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
2 changed files with 5 additions and 4 deletions

View File

@ -257,6 +257,7 @@
oneditprepare: function() {
var previous = null;
var blist = [
{value:"230400",label:"230400",hasValue:false},
{value:"115200",label:"115200",hasValue:false},
{value:"57600",label:"57600",hasValue:false},
{value:"38400",label:"38400",hasValue:false},

View File

@ -1,9 +1,9 @@
{
"name" : "node-red-node-serialport",
"version" : "0.14.1",
"version" : "0.15.0",
"description" : "Node-RED nodes to talk to serial ports",
"dependencies" : {
"serialport" : "^9.1.0"
"serialport" : "^9.2.5"
},
"repository" : {
"type":"git",
@ -13,12 +13,12 @@
"license": "Apache-2.0",
"keywords": [ "node-red", "serial" ],
"node-red": {
"version": ">=0.18.0",
"version": ">=1.0.0",
"nodes": {
"serialport": "25-serial.js"
}
},
"engines" : { "node" : ">=8.6.0" },
"engines" : { "node" : ">=10.0.0" },
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",