You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inav-configurator/js/serial.js

58 lines
1.9 KiB
JavaScript

var serial = {
connectionId: -1,
connect: function(path, options, callback) {
var self = this;
chrome.serial.connect(path, options, function(connectionInfo) {
self.connectionId = connectionInfo.connectionId;
if (connectionInfo.connectionId > 0) {
console.log('SERIAL: Connection opened with ID: ' + connectionInfo.connectionId + ', Baud: ' + connectionInfo.bitrate);
}
callback(connectionInfo);
});
},
disconnect: function(callback) {
var self = this;
chrome.serial.disconnect(this.connectionId, function(result) {
if (result) {
console.log('SERIAL: Connection with ID: ' + self.connectionId + ' closed');
} else {
console.log('SERIAL: Failed to close connection with ID: ' + self.connectionId + ' closed');
}
self.connectionId = -1;
callback(result);
});
},
getDevices: function(callback) {
chrome.serial.getDevices(function(devices_array) {
var devices = [];
devices_array.forEach(function(device) {
devices.push(device.path);
});
callback(devices);
});
},
setControlSignals: function(signals, callback) {
chrome.serial.setControlSignals(this.connectionId, signals, callback);
},
send: function(data, callback) {
chrome.serial.send(this.connectionId, data, callback);
},
onReceive: {
listeners_: chrome.serial.onReceive.listeners_,
addListener: function(function_reference) {
chrome.serial.onReceive.addListener(function_reference);
},
removeListener: function(function_reference) {
chrome.serial.onReceive.removeListener(function_reference);
}
}
};