diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-04-20 06:04:49 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-04-20 06:04:49 +0000 |
| commit | 36636bf8b2fd123e2150acd7b7c7b994d20e143a (patch) | |
| tree | f7df377d85533fa5fb1062480dd61f09477c5e89 /LUFA/Drivers/USB/Core/DeviceStandardReq.c | |
| parent | b9b97474a266811dc3ff254a4e5487e0001b00a1 (diff) | |
Fix reversed descriptions for the AVR8 USB pad regulator enable/disable masks (thanks to Omar).
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1742 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/USB/Core/DeviceStandardReq.c')
| -rw-r--r-- | LUFA/Drivers/USB/Core/DeviceStandardReq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/DeviceStandardReq.c b/LUFA/Drivers/USB/Core/DeviceStandardReq.c index 2e6d8f8c..f9c64b6f 100644 --- a/LUFA/Drivers/USB/Core/DeviceStandardReq.c +++ b/LUFA/Drivers/USB/Core/DeviceStandardReq.c @@ -114,7 +114,7 @@ void USB_Device_ProcessControlRequest(void) static void USB_Device_SetAddress(void) { - uint8_t DeviceAddress = (USB_ControlRequest.wValue & 0x7F); + uint8_t DeviceAddress = (USB_ControlRequest.wValue & 0x7F); uint_reg_t CurrentGlobalInt = GetGlobalInterruptMask(); GlobalInterruptDisable(); |
