From 235e18d7067967ce9dc0d0414687617bb5bd83c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 12 Dec 2017 01:29:49 +0100 Subject: [PATCH] Fix UsbCommandId_WriteHardwareConfig that I previously screwed up. --- right/src/usb_protocol_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index f4e6e70..4c824bb 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -47,7 +47,7 @@ void UsbProtocolHandler(void) UsbCommand_ReadConfig(); break; case UsbCommandId_WriteHardwareConfig: - UsbCommand_ReadConfig(false); + UsbCommand_WriteConfig(true); break; case UsbCommandId_GetKeyboardState: UsbCommand_GetKeyboardState();