diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-02-01 05:34:59 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-02-01 05:34:59 +0000 |
| commit | f388e647064336e6e49754d97d49258f3b88bf8f (patch) | |
| tree | 42da88479317ce0ff7632cc144983e3913fc23d8 /Projects/AVRISP-MKII/Lib/V2Protocol.h | |
| parent | 6dba9bb7a8b177a9669131e5115a4db5fccf63b4 (diff) | |
Make AVRISP XPROG function parameters const where possible.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1091 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/V2Protocol.h')
| -rw-r--r-- | Projects/AVRISP-MKII/Lib/V2Protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP-MKII/Lib/V2Protocol.h b/Projects/AVRISP-MKII/Lib/V2Protocol.h index 5af9fe9b..d67fb3da 100644 --- a/Projects/AVRISP-MKII/Lib/V2Protocol.h +++ b/Projects/AVRISP-MKII/Lib/V2Protocol.h @@ -82,9 +82,9 @@ void V2Protocol_ProcessCommand(void);
#if defined(INCLUDE_FROM_V2PROTOCOL_C)
- static void V2Protocol_UnknownCommand(uint8_t V2Command);
+ static void V2Protocol_UnknownCommand(const uint8_t V2Command);
static void V2Protocol_SignOn(void);
- static void V2Protocol_GetSetParam(uint8_t V2Command);
+ static void V2Protocol_GetSetParam(const uint8_t V2Command);
static void V2Protocol_ResetProtection(void);
static void V2Protocol_LoadAddress(void);
#endif
|
