Extract uhk.updateFirmwares()

This commit is contained in:
László Monda
2018-03-31 23:50:02 +02:00
parent 9b93b4dac5
commit 58178a5c7b
2 changed files with 10 additions and 5 deletions

View File

@@ -268,6 +268,14 @@ async function updateModuleFirmware(i2cAddress, moduleSlotId, firmwareImage) {
echo('Firmware updated successfully.');
};
async function updateFirmwares(firmwarePath) {
console.log('Updating right firmware');
await uhk.updateDeviceFirmware(`${firmwarePath}/devices/uhk60-right/firmware.hex`, 'hex');
await uhk.reenumerate('normalKeyboard');
console.log('Updating left firmware');
await uhk.updateModuleFirmware(uhk.moduleSlotToI2cAddress.leftHalf, uhk.moduleSlotToId.leftHalf, `${firmwarePath}/modules/uhk60-left.bin`);
}
uhk = exports = module.exports = moduleExports = {
bufferToString,
getUint16,
@@ -288,6 +296,7 @@ uhk = exports = module.exports = moduleExports = {
switchKeymap,
waitForKbootIdle,
updateModuleFirmware,
updateFirmwares,
usbCommands: {
getDeviceProperty : 0x00,
reenumerate : 0x01,

View File

@@ -29,11 +29,7 @@ require('shelljs/global');
firmwarePath = tmpObj.name;
}
config.verbose = true;
console.log('Updating right firmware');
await uhk.updateDeviceFirmware(`${firmwarePath}/devices/uhk60-right/firmware.hex`, 'hex');
await uhk.reenumerate('normalKeyboard');
console.log('Updating left firmware');
await uhk.updateModuleFirmware(uhk.moduleSlotToI2cAddress.leftHalf, uhk.moduleSlotToId.leftHalf, `${firmwarePath}/modules/uhk60-left.bin`);
await uhk.updateFirmwares(firmwarePath);
if (program.overwriteUserConfig) {
exec(`${__dirname}/write-config.js ${firmwarePath}/devices/uhk60-right/config.bin`);