diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-14 12:59:53 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-14 12:59:53 +0000 |
| commit | 3e61a7791be846a40aeb86c701fc89ecdffe6dad (patch) | |
| tree | 4a5bb4f647561f36d65e56fcf3586ab2335cc450 | |
| parent | f93bcc34ec61bb80fe7aa2a54107d819ec5b46aa (diff) | |
Rename hid-teensy and hid-teensy-ee targets to teensy and teensy-ee to be in line with the DFU module target names.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2399 d5102386-fcda-11dd-9fdb-3debd5008f28
| -rw-r--r-- | LUFA/Build/lufa.hid.in | 12 | ||||
| -rw-r--r-- | LUFA/DoxygenPages/BuildSystem.txt | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/LUFA/Build/lufa.hid.in b/LUFA/Build/lufa.hid.in index 60be46dd..a74197a0 100644 --- a/LUFA/Build/lufa.hid.in +++ b/LUFA/Build/lufa.hid.in @@ -7,7 +7,7 @@ # LUFA_BUILD_MODULES += HID -LUFA_BUILD_TARGETS += hid hid-ee hid-teensy hid-teensy-ee +LUFA_BUILD_TARGETS += hid hid-ee teensy teensy-ee LUFA_BUILD_MANDATORY_VARS += MCU TARGET LUFA_BUILD_OPTIONAL_VARS += LUFA_BUILD_PROVIDED_VARS += @@ -26,9 +26,9 @@ LUFA_BUILD_PROVIDED_MACROS += # hid_bootloader_cli # hid-ee - Program EEPROM into target via a temporary # AVR application and hid_bootloader_cli -# hid-teensy - Program FLASH into target via +# teensy - Program FLASH into target via # teensy_loader_cli -# hid-teensy-ee - Program EEPROM into target via a temporary +# teensy-ee - Program EEPROM into target via a temporary # AVR application and teensy_loader_cli # # MANDATORY PARAMETERS: @@ -74,15 +74,15 @@ hid-ee: $(TARGET).eep $(MAKEFILE_LIST) @echo $(MSG_MAKE_CMD) Making EEPROM loader application for \"$<\" make -C $(patsubst %/,%,$(LUFA_PATH))/Build/HID_EEPROM_Loader/ MCU=$(MCU) clean hid -hid-teensy: $(TARGET).hex $(MAKEFILE_LIST) +teensy: $(TARGET).hex $(MAKEFILE_LIST) @echo $(MSG_HID_BOOTLOADER_CMD) Programming FLASH with teensy_loader_cli using \"$<\" teensy_loader_cli -mmcu=$(MCU) -v $< -hid-teensy-ee: $(TARGET).hex $(MAKEFILE_LIST) +teensy-ee: $(TARGET).hex $(MAKEFILE_LIST) @echo $(MSG_OBJCPY_CMD) Converting \"$<\" to a binary file \"InputEEData.bin\" avr-objcopy -I ihex -O binary $< $(patsubst %/,%,$(LUFA_PATH))/Build/HID_EEPROM_Loader/InputEEData.bin @echo $(MSG_MAKE_CMD) Making EEPROM loader application for \"$<\" make -s -C $(patsubst %/,%,$(LUFA_PATH))/Build/HID_EEPROM_Loader/ MCU=$(MCU) clean hid-teensy # Phony build targets for this module -.PHONY: hid hid-ee hid-teensy hid-teensy-ee +.PHONY: hid hid-ee teensy teensy-ee diff --git a/LUFA/DoxygenPages/BuildSystem.txt b/LUFA/DoxygenPages/BuildSystem.txt index 2c42c7da..3ff3ff68 100644 --- a/LUFA/DoxygenPages/BuildSystem.txt +++ b/LUFA/DoxygenPages/BuildSystem.txt @@ -706,11 +706,11 @@ * \note This will erase the currently loaded application in the target.</td>
* </tr>
* <tr>
- * <td><tt>hid-teensy</tt></td>
+ * <td><tt>teensy</tt></td>
* <td>Program the device FLASH memory with the application's executable data using <tt>teensy_loader_cli</tt>.</td>
* </tr>
* <tr>
- * <td><tt>hid-teensy-ee</tt></td>
+ * <td><tt>teensy-ee</tt></td>
* <td>Program the device EEPROM memory with the application's EEPROM data using <tt>teensy_loader_cli</tt> and
* a temporary AVR application programmed into the target's FLASH.
* \note This will erase the currently loaded application in the target.</td>
|
