projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added const where possible to the source functions in the Projects directory.
[pub/USBasp.git]
/
Projects
/
AVRISP
/
Lib
/
V2ProtocolParams.h
diff --git
a/Projects/AVRISP/Lib/V2ProtocolParams.h
b/Projects/AVRISP/Lib/V2ProtocolParams.h
index
14ff56c
..
28d57c8
100644
(file)
--- a/
Projects/AVRISP/Lib/V2ProtocolParams.h
+++ b/
Projects/AVRISP/Lib/V2ProtocolParams.h
@@
-62,8
+62,8
@@
typedef struct
\r
{
\r
const uint8_t ParamID; /**< Parameter ID number to uniquely identify the parameter within the device */
\r
typedef struct
\r
{
\r
const uint8_t ParamID; /**< Parameter ID number to uniquely identify the parameter within the device */
\r
+ const uint8_t ParamPrivileges; /**< Parameter privileges to allow the host to read or write the parameter's value */
\r
uint8_t ParamValue; /**< Current parameter's value within the device */
\r
uint8_t ParamValue; /**< Current parameter's value within the device */
\r
- uint8_t ParamPrivileges; /**< Parameter privileges to allow the host to read or write the parameter's value */
\r
} ParameterItem_t;
\r
\r
/* Function Prototypes: */
\r
} ParameterItem_t;
\r
\r
/* Function Prototypes: */
\r