projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added const modifiers to device mode class drivers.
[pub/lufa.git]
/
Demos
/
Device
/
LowLevel
/
GenericHID
/
GenericHID.c
diff --git
a/Demos/Device/LowLevel/GenericHID/GenericHID.c
b/Demos/Device/LowLevel/GenericHID/GenericHID.c
index
40de8b9
..
f467494
100644
(file)
--- a/
Demos/Device/LowLevel/GenericHID/GenericHID.c
+++ b/
Demos/Device/LowLevel/GenericHID/GenericHID.c
@@
-170,7
+170,7
@@
void EVENT_USB_UnhandledControlPacket(void)
\r
/** Function to process the lest received report from the host.
\r
*
\r
\r
/** Function to process the lest received report from the host.
\r
*
\r
- * \param DataArray Pointer to a buffer where the last report data is stored
\r
+ * \param
[in]
DataArray Pointer to a buffer where the last report data is stored
\r
*/
\r
void ProcessGenericHIDReport(uint8_t* DataArray)
\r
{
\r
*/
\r
void ProcessGenericHIDReport(uint8_t* DataArray)
\r
{
\r
@@
-186,7
+186,7
@@
void ProcessGenericHIDReport(uint8_t* DataArray)
\r
/** Function to create the next report to send back to the host at the next reporting interval.
\r
*
\r
\r
/** Function to create the next report to send back to the host at the next reporting interval.
\r
*
\r
- * \param DataArray Pointer to a buffer where the next report data should be stored
\r
+ * \param
[out]
DataArray Pointer to a buffer where the next report data should be stored
\r
*/
\r
void CreateGenericHIDReport(uint8_t* DataArray)
\r
{
\r
*/
\r
void CreateGenericHIDReport(uint8_t* DataArray)
\r
{
\r