diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-24 02:14:04 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-24 02:14:04 +0000 |
commit | 9decc2bc595bb15ccf275ae2d3854bb862c92881 (patch) | |
tree | 820f003024f1636d6654a536e82f2a7e98d4cd34 /Projects/AVRISP/Lib/V2Protocol.c | |
parent | 05fcf7e2a79bebb978d4aeaef26b12f70c6826f8 (diff) | |
download | lufa-9decc2bc595bb15ccf275ae2d3854bb862c92881.tar.gz lufa-9decc2bc595bb15ccf275ae2d3854bb862c92881.tar.bz2 lufa-9decc2bc595bb15ccf275ae2d3854bb862c92881.zip |
Combine PDIProtocol and TPIProtocol into a single XPROGProtocol set of files.
Diffstat (limited to 'Projects/AVRISP/Lib/V2Protocol.c')
-rw-r--r-- | Projects/AVRISP/Lib/V2Protocol.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Projects/AVRISP/Lib/V2Protocol.c b/Projects/AVRISP/Lib/V2Protocol.c index eae2e830f..0c4664e54 100644 --- a/Projects/AVRISP/Lib/V2Protocol.c +++ b/Projects/AVRISP/Lib/V2Protocol.c @@ -100,17 +100,14 @@ void V2Protocol_ProcessCommand(void) ISPProtocol_SPIMulti();
break;
#endif
-#if defined(ENABLE_PDI_PROTOCOL)
+#if defined(ENABLE_XPROG_PROTOCOL)
case CMD_XPROG_SETMODE:
- PDIProtocol_XPROG_SetMode();
+ XPROGProtocol_SetMode();
break;
case CMD_XPROG:
- PDIProtocol_XPROG_Command();
+ XPROGProtocol_Command();
break;
#endif
-#if defined(ENABLE_TPI_PROTOCOL)
- // TODO
-#endif
default:
V2Protocol_UnknownCommand(V2Command);
break;
|