Skip to content
Snippets Groups Projects
Commit d4980e58 authored by Dean Camera's avatar Dean Camera
Browse files

Rename hid-teensy and hid-teensy-ee targets to teensy and teensy-ee to be in...

Rename hid-teensy and hid-teensy-ee targets to teensy and teensy-ee to be in line with the DFU module target names.
parent 1faa5ba7
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment