Files
agent/packages/usb/set-i2c-baud-rate.js
2018-01-30 17:30:12 +01:00

24 lines
926 B
JavaScript
Executable File

#!/usr/bin/env node
const path = require('path');
const uhk = require('./uhk');
const device = uhk.getUhkDevice();
let programName = path.basename(process.argv[1]);
if (process.argv.length !== 3) {
console.log(`Usage: ${programName} <baud rate in Hz>
Adjust the frequency of the main I2C bus via which the right keyboard half communicates with the left half and the add-on modules.
Example values:
* 400000 Hz - Highest speed. This will probably make communication unreliable. Not recommended.
* 100000 Hz - Default speed. Should work in most cases.
* 10000 Hz - Low speed. Should help when connection is spotty. It'll make initial LED display updates visibly slower.
You're free to use any value in between and test the results.`);
process.exit(1);
}
let bps = process.argv[2];
(async function() {
await uhk.writeDevice(device, [uhk.usbCommands.setI2cBaudRate, ...uhk.uint32ToArray(+bps)]);
})();