diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-26 04:13:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-26 04:13:55 +0000 |
commit | d1608d4af321529f0ddef9defcd97669ae9018c3 (patch) | |
tree | 79a2ba0fe2bfa14670a489e77f4c201f380de4f0 /Projects/AVRISP/Lib/V2ProtocolParams.h | |
parent | 35dac470f243d234d72f34cbaeb1d6c8a15bc435 (diff) | |
download | lufa-d1608d4af321529f0ddef9defcd97669ae9018c3.tar.gz lufa-d1608d4af321529f0ddef9defcd97669ae9018c3.tar.bz2 lufa-d1608d4af321529f0ddef9defcd97669ae9018c3.zip |
Added const where possible to the source functions in the Projects directory.
Added command timeout to the AVRISP project so that incorrectly connected targets no longer freeze the device.
Removed string descriptors from the TeensyHID bootloader to reduce its size.
Diffstat (limited to 'Projects/AVRISP/Lib/V2ProtocolParams.h')
-rw-r--r-- | Projects/AVRISP/Lib/V2ProtocolParams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP/Lib/V2ProtocolParams.h b/Projects/AVRISP/Lib/V2ProtocolParams.h index 14ff56c71..28d57c80b 100644 --- a/Projects/AVRISP/Lib/V2ProtocolParams.h +++ b/Projects/AVRISP/Lib/V2ProtocolParams.h @@ -62,8 +62,8 @@ typedef struct
{
const uint8_t ParamID; /**< Parameter ID number to uniquely identify the parameter within the device */
+ const uint8_t ParamPrivileges; /**< Parameter privileges to allow the host to read or write the parameter's value */
uint8_t ParamValue; /**< Current parameter's value within the device */
- uint8_t ParamPrivileges; /**< Parameter privileges to allow the host to read or write the parameter's value */
} ParameterItem_t;
/* Function Prototypes: */
|