projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update UC3 platform driver support to use the bitmasks defined in the header files...
[pub/USBasp.git]
/
Demos
/
Device
/
LowLevel
/
GenericHID
/
GenericHID.c
diff --git
a/Demos/Device/LowLevel/GenericHID/GenericHID.c
b/Demos/Device/LowLevel/GenericHID/GenericHID.c
index
2d1e2dd
..
70ca0a5
100644
(file)
--- a/
Demos/Device/LowLevel/GenericHID/GenericHID.c
+++ b/
Demos/Device/LowLevel/GenericHID/GenericHID.c
@@
-148,9
+148,9
@@
void EVENT_USB_Device_ControlRequest(void)
}
}
}
}
-/** Function to process the l
e
st received report from the host.
+/** Function to process the l
a
st received report from the host.
*
*
- * \param[in] DataArray Pointer to a buffer where the last re
port data is
stored
+ * \param[in] DataArray Pointer to a buffer where the last re
ceived report has been
stored
*/
void ProcessGenericHIDReport(uint8_t* DataArray)
{
*/
void ProcessGenericHIDReport(uint8_t* DataArray)
{
@@
-198,7
+198,7
@@
void HID_Task(void)
uint8_t GenericData[GENERIC_REPORT_SIZE];
/* Read Generic Report Data */
uint8_t GenericData[GENERIC_REPORT_SIZE];
/* Read Generic Report Data */
- Endpoint_Read_Stream_LE(&GenericData, sizeof(GenericData));
+ Endpoint_Read_Stream_LE(&GenericData, sizeof(GenericData)
, NULL
);
/* Process Generic Report Data */
ProcessGenericHIDReport(GenericData);
/* Process Generic Report Data */
ProcessGenericHIDReport(GenericData);
@@
-220,7
+220,7
@@
void HID_Task(void)
CreateGenericHIDReport(GenericData);
/* Write Generic Report Data */
CreateGenericHIDReport(GenericData);
/* Write Generic Report Data */
- Endpoint_Write_Stream_LE(&GenericData, sizeof(GenericData));
+ Endpoint_Write_Stream_LE(&GenericData, sizeof(GenericData)
, NULL
);
/* Finalize the stream transfer to send the last packet */
Endpoint_ClearIN();
/* Finalize the stream transfer to send the last packet */
Endpoint_ClearIN();