From df9af6c3b8fcb033ff0073c1401101f4a1c28794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Kiss?= Date: Sat, 22 Jun 2024 12:18:05 +0200 Subject: [PATCH] chore: log the report id of the Agent => firmware package (#2302) --- packages/uhk-usb/src/uhk-hid-device.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/uhk-usb/src/uhk-hid-device.ts b/packages/uhk-usb/src/uhk-hid-device.ts index 6110657c79c..7aa341b41a9 100644 --- a/packages/uhk-usb/src/uhk-hid-device.ts +++ b/packages/uhk-usb/src/uhk-hid-device.ts @@ -181,7 +181,7 @@ export class UhkHidDevice { try { const sendData = getTransferData(buffer); - this.logService.usb('[UhkHidDevice] USB[W]:', bufferToString(sendData).substr(3)); + this.logService.usb('[UhkHidDevice] USB[W]:', bufferToString(sendData)); device.write(sendData); await snooze(1); const receivedData = device.readTimeout(1000);