aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP-MKII/Lib/V2Protocol.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-01 05:34:59 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-01 05:34:59 +0000
commit9e7ffcb014d08d9f541cc8000b34f600b437a78e (patch)
tree42da88479317ce0ff7632cc144983e3913fc23d8 /Projects/AVRISP-MKII/Lib/V2Protocol.h
parent5f363996e3b6fc66017ff02eb2de6f477e0f328e (diff)
downloadlufa-9e7ffcb014d08d9f541cc8000b34f600b437a78e.tar.gz
lufa-9e7ffcb014d08d9f541cc8000b34f600b437a78e.tar.bz2
lufa-9e7ffcb014d08d9f541cc8000b34f600b437a78e.zip
Make AVRISP XPROG function parameters const where possible.
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/V2Protocol.h')
-rw-r--r--Projects/AVRISP-MKII/Lib/V2Protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP-MKII/Lib/V2Protocol.h b/Projects/AVRISP-MKII/Lib/V2Protocol.h
index 5af9fe9bf..d67fb3dad 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