diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-08-31 08:27:48 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-08-31 08:27:48 +0000 |
| commit | e105e959017c3e6812b7cff04baf81a2219b7a49 (patch) | |
| tree | 31c715d4c01ef252bbe76516e196f70b783b76b4 /Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c | |
| parent | 0ac73420f0a70f010ad8e9cc5444e763afbe1ba2 (diff) | |
Oops - with new changes to the way the device Configuration Descriptor is retrieved from the device, ensure that the correct position pointer is cast when extracting descriptor parameters.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@798 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c')
| -rw-r--r-- | Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c b/Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c index db4032f6..3c9f3049 100644 --- a/Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c +++ b/Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c @@ -166,8 +166,8 @@ void Keyboard_HID_Task(void) break;
}
- puts_P(PSTR("Processing HID Report.\r\n"));
-
+ printf_P(PSTR("Processing HID Report (Size %d Bytes).\r\n"), HIDReportSize);
+
/* Get and process the device's first HID report descriptor */
if ((ErrorCode = GetHIDReportData()) != ParseSuccessful)
{
|
