diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index 4cef2f2..528ce69 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -44,8 +44,6 @@ void UsbProtocolHandler(void) case UsbCommandId_SetTestLed: UsbCommand_SetTestLed(); break; - case UsbCommandId_WriteLedDriver: - break; case UsbCommandId_WriteUserConfiguration: UsbCommand_WriteConfig(false); break; diff --git a/right/src/usb_protocol_handler.h b/right/src/usb_protocol_handler.h index bd6fee2..57c367d 100644 --- a/right/src/usb_protocol_handler.h +++ b/right/src/usb_protocol_handler.h @@ -12,10 +12,9 @@ UsbCommandId_GetProperty = 0, UsbCommandId_Reenumerate = 1, UsbCommandId_SetTestLed = 2, - UsbCommandId_WriteLedDriver = 3, UsbCommandId_WriteUserConfiguration = 8, UsbCommandId_ApplyConfig = 9, - UsbCommandId_SetLedPwmBrightness = 10, + UsbCommandId_SetLedPwmBrightness = 10, UsbCommandId_GetAdcValue = 11, UsbCommandId_LaunchEepromTransferLegacy = 12, UsbCommandId_ReadHardwareConfiguration = 13,