projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add missing const qualifiers to class drivers.
[pub/USBasp.git]
/
LUFA
/
Drivers
/
USB
/
LowLevel
/
Template
/
Template_Endpoint_RW.c
diff --git
a/LUFA/Drivers/USB/LowLevel/Template/Template_Endpoint_RW.c
b/LUFA/Drivers/USB/LowLevel/Template/Template_Endpoint_RW.c
index
4e9c324
..
fc9df95
100644
(file)
--- a/
LUFA/Drivers/USB/LowLevel/Template/Template_Endpoint_RW.c
+++ b/
LUFA/Drivers/USB/LowLevel/Template/Template_Endpoint_RW.c
@@
-1,4
+1,6
@@
-uint8_t TEMPLATE_FUNC_NAME (TEMPLATE_BUFFER_TYPE Buffer, uint16_t Length __CALLBACK_PARAM)
+uint8_t TEMPLATE_FUNC_NAME (TEMPLATE_BUFFER_TYPE Buffer,
+ uint16_t Length
+ __CALLBACK_PARAM)
{
uint8_t* DataStream = ((uint8_t*)Buffer + TEMPLATE_BUFFER_OFFSET(Length));
uint8_t ErrorCode;
{
uint8_t* DataStream = ((uint8_t*)Buffer + TEMPLATE_BUFFER_OFFSET(Length));
uint8_t ErrorCode;