diff --git a/LUFA.pnproj b/LUFA.pnproj index 6af7b4d8d6..4c665c7ec9 100644 --- a/LUFA.pnproj +++ b/LUFA.pnproj @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/Projects/AVRISP/Lib/V2ProtocolTarget.c b/Projects/AVRISP/Lib/ISPTarget.c similarity index 96% rename from Projects/AVRISP/Lib/V2ProtocolTarget.c rename to Projects/AVRISP/Lib/ISPTarget.c index b5de9ba4f9..87158460bc 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 similarity index 100% rename from Projects/AVRISP/Lib/V2ProtocolTarget.h rename to Projects/AVRISP/Lib/ISPTarget.h diff --git a/Projects/AVRISP/Lib/V2ProtocolParams.h b/Projects/AVRISP/Lib/V2ProtocolParams.h index 6a5c25f1fd..ca3dd97314 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 bc63e951f7..1aab6a3c57 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 \