diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-02 12:04:37 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-02 12:04:37 +0000 |
commit | 5930f47bf4b9b4490daf80d44595ff14ee7ce165 (patch) | |
tree | c63fa91e36c303f56ca06f0049ed54dbab0a25bc /Projects | |
parent | 1ed6925b5bf417848b83887b32e3ede05a1c691b (diff) | |
download | lufa-5930f47bf4b9b4490daf80d44595ff14ee7ce165.tar.gz lufa-5930f47bf4b9b4490daf80d44595ff14ee7ce165.tar.bz2 lufa-5930f47bf4b9b4490daf80d44595ff14ee7ce165.zip |
Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone project.
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/AVRISP/Lib/ISPTarget.c (renamed from Projects/AVRISP/Lib/V2ProtocolTarget.c) | 2 | ||||
-rw-r--r-- | Projects/AVRISP/Lib/ISPTarget.h (renamed from Projects/AVRISP/Lib/V2ProtocolTarget.h) | 0 | ||||
-rw-r--r-- | Projects/AVRISP/Lib/V2ProtocolParams.h | 2 | ||||
-rw-r--r-- | Projects/AVRISP/makefile | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/Projects/AVRISP/Lib/V2ProtocolTarget.c b/Projects/AVRISP/Lib/ISPTarget.c index b5de9ba4f..87158460b 100644 --- a/Projects/AVRISP/Lib/V2ProtocolTarget.c +++ b/Projects/AVRISP/Lib/ISPTarget.c @@ -33,7 +33,7 @@ * Target-related functions for the ISP Protocol decoder.
*/
-#include "V2ProtocolTarget.h"
+#include "ISPTarget.h"
/** Converts the given AVR Studio SCK duration parameter (set by a SET PARAM command from the host) to the nearest
* possible SPI clock prescaler mask for passing to the SPI_Init() routine.
diff --git a/Projects/AVRISP/Lib/V2ProtocolTarget.h b/Projects/AVRISP/Lib/ISPTarget.h index 121d7893f..121d7893f 100644 --- a/Projects/AVRISP/Lib/V2ProtocolTarget.h +++ b/Projects/AVRISP/Lib/ISPTarget.h diff --git a/Projects/AVRISP/Lib/V2ProtocolParams.h b/Projects/AVRISP/Lib/V2ProtocolParams.h index 6a5c25f1f..ca3dd9731 100644 --- a/Projects/AVRISP/Lib/V2ProtocolParams.h +++ b/Projects/AVRISP/Lib/V2ProtocolParams.h @@ -48,7 +48,7 @@ #include "V2Protocol.h"
#include "V2ProtocolConstants.h"
- #include "V2ProtocolTarget.h"
+ #include "ISPTarget.h"
/* Macros: */
/** Parameter privilege mask to allow the host PC to read the parameter's value */
diff --git a/Projects/AVRISP/makefile b/Projects/AVRISP/makefile index bc63e951f..1aab6a3c5 100644 --- a/Projects/AVRISP/makefile +++ b/Projects/AVRISP/makefile @@ -129,8 +129,8 @@ SRC = $(TARGET).c \ Descriptors.c \
Lib/V2Protocol.c \
Lib/V2ProtocolParams.c \
- Lib/V2ProtocolTarget.c \
Lib/ISPProtocol.c \
+ Lib/ISPTarget.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Host.c \
|