Remove DevicePropertyId_HardwareConfigSize and DevicePropertyId_UserConfigSize

This commit is contained in:
László Monda
2017-12-14 21:49:15 +01:00
parent 312f56048b
commit 83e782d74a
2 changed files with 0 additions and 8 deletions

View File

@@ -55,12 +55,6 @@ void UsbCommand_GetProperty(void)
case DevicePropertyId_ConfigSizes:
memcpy(GenericHidOutBuffer+1, (uint8_t*)&configSizes, sizeof(configSizes));
break;
case DevicePropertyId_HardwareConfigSize:
SetUsbTxBufferUint16(1, HARDWARE_CONFIG_SIZE);
break;
case DevicePropertyId_UserConfigSize:
SetUsbTxBufferUint16(1, USER_CONFIG_SIZE);
break;
default:
SetUsbTxBufferUint8(0, UsbStatusCode_GetProperty_InvalidProperty);
break;