diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-20 13:08:27 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-20 13:08:27 +0000 |
commit | 5d7827a573b7c9d110b1a9b180b5c2596c50ea3b (patch) | |
tree | ef4fb7464cd587f3875e3d21b60c2c6ae846f4cc /LUFA/Drivers/USB/Class | |
parent | d784baaa3a97929fc9a7fed7fff84ff7b0f5bc17 (diff) | |
download | lufa-5d7827a573b7c9d110b1a9b180b5c2596c50ea3b.tar.gz lufa-5d7827a573b7c9d110b1a9b180b5c2596c50ea3b.tar.bz2 lufa-5d7827a573b7c9d110b1a9b180b5c2596c50ea3b.zip |
Minor internal macro renaming for the UC3 devices.
Diffstat (limited to 'LUFA/Drivers/USB/Class')
-rw-r--r-- | LUFA/Drivers/USB/Class/Host/HID.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/HID.c b/LUFA/Drivers/USB/Class/Host/HID.c index 992f7b3a6..aab35b109 100644 --- a/LUFA/Drivers/USB/Class/Host/HID.c +++ b/LUFA/Drivers/USB/Class/Host/HID.c @@ -112,7 +112,7 @@ uint8_t HID_Host_ConfigurePipes(USB_ClassInfo_HID_Host_t* const HIDInterfaceInfo DoubleBanked = HIDInterfaceInfo->Config.DataINPipeDoubleBank; InterruptPeriod = DataINEndpoint->PollingIntervalMS; - HIDInterfaceInfo->State.DataINPipeSize = DataINEndpoint->EndpointSize; + HIDInterfaceInfo->State.DataINPipeSize = DataINEndpoint->EndpointSize; } else if (PipeNum == HIDInterfaceInfo->Config.DataOUTPipeNumber) { @@ -148,7 +148,7 @@ uint8_t HID_Host_ConfigurePipes(USB_ClassInfo_HID_Host_t* const HIDInterfaceInfo HIDInterfaceInfo->State.HIDReportSize = HIDDescriptor->HIDReportLength; HIDInterfaceInfo->State.SupportsBootProtocol = (HIDInterface->SubClass != HID_CSCP_NonBootProtocol); HIDInterfaceInfo->State.LargestReportSize = 8; - HIDInterfaceInfo->State.IsActive = true; + HIDInterfaceInfo->State.IsActive = true; return HID_ENUMERROR_NoError; } |