diff --git a/packages/uhk-agent/src/services/device.service.ts b/packages/uhk-agent/src/services/device.service.ts index 08161d9e..2e3da26a 100644 --- a/packages/uhk-agent/src/services/device.service.ts +++ b/packages/uhk-agent/src/services/device.service.ts @@ -47,7 +47,7 @@ export class DeviceService { public async loadConfigurations(event: Electron.Event): Promise { try { const userConfiguration = await this.loadConfiguration( - SystemPropertyIds.UserConfigSize, + SystemPropertyIds.MaxUserConfigSize, UsbCommand.ReadUserConfig, 'user configuration'); diff --git a/packages/uhk-usb/src/constants.ts b/packages/uhk-usb/src/constants.ts index 70f416f0..da6c15f4 100644 --- a/packages/uhk-usb/src/constants.ts +++ b/packages/uhk-usb/src/constants.ts @@ -31,5 +31,5 @@ export enum SystemPropertyIds { DataModelVersion = 2, FirmwareVersion = 3, HardwareConfigSize = 4, - UserConfigSize = 5 + MaxUserConfigSize = 5 }