diff options
author | László Monda <laci@monda.hu> | 2013-09-24 11:09:36 +0200 |
---|---|---|
committer | László Monda <laci@monda.hu> | 2013-09-24 11:09:36 +0200 |
commit | c41512c1e8d80edbd01a9d0a24367b5bd4873109 (patch) | |
tree | 3026e5281bab65a00447ae41beed08bc3ccaea23 /LUFA/Drivers/USB/Class | |
parent | cd3aae87daa243413413ab9fc4e32c225c3bea03 (diff) | |
download | lufa-c41512c1e8d80edbd01a9d0a24367b5bd4873109.tar.gz lufa-c41512c1e8d80edbd01a9d0a24367b5bd4873109.tar.bz2 lufa-c41512c1e8d80edbd01a9d0a24367b5bd4873109.zip |
Use spaces instead of tabs where necessary to fix indentation.
Diffstat (limited to 'LUFA/Drivers/USB/Class')
-rw-r--r-- | LUFA/Drivers/USB/Class/Device/HIDClassDevice.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h b/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h index 2915c9157..b5fe3a13b 100644 --- a/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h +++ b/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h @@ -91,13 +91,13 @@ * stored by the driver, for comparison purposes to detect report changes that * must be sent immediately to the host. This should point to a buffer big enough * to hold the largest HID input report sent from the HID interface. If this is set - * to \c NULL, it is up to the user to force transfers when needed in the - * \ref CALLBACK_HID_Device_CreateHIDReport() callback function. - * - * \note Due to the single buffer, the internal driver can only correctly compare - * subsequent reports with identical report IDs. In multiple report devices, - * this buffer should be set to \c NULL and the decision to send reports made - * by the user application instead. + * to \c NULL, it is up to the user to force transfers when needed in the + * \ref CALLBACK_HID_Device_CreateHIDReport() callback function. + * + * \note Due to the single buffer, the internal driver can only correctly compare + * subsequent reports with identical report IDs. In multiple report devices, + * this buffer should be set to \c NULL and the decision to send reports made + * by the user application instead. */ uint8_t PrevReportINBufferSize; /**< Size in bytes of the given input report buffer. This is used to create a * second buffer of the same size within the driver so that subsequent reports |