aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/RNDISEthernet
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-03-04 08:03:13 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-03-04 08:03:13 +0000
commit7e7124e40ba2155c5ee4348701be30d3790edca3 (patch)
tree7c8d7f6fb75555874b10577e2937e00a3deec284 /Demos/RNDISEthernet
parent5e787a4bb04f8a27f9300077361403adf2e92b3f (diff)
downloadlufa-7e7124e40ba2155c5ee4348701be30d3790edca3.tar.gz
lufa-7e7124e40ba2155c5ee4348701be30d3790edca3.tar.bz2
lufa-7e7124e40ba2155c5ee4348701be30d3790edca3.zip
Updated makefiles to reflect new dfu-ee programming target invocations (supplied by Opendous, Inc.).
Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts.
Diffstat (limited to 'Demos/RNDISEthernet')
-rw-r--r--Demos/RNDISEthernet/makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Demos/RNDISEthernet/makefile b/Demos/RNDISEthernet/makefile
index ba1588af6..18f1fe4a8 100644
--- a/Demos/RNDISEthernet/makefile
+++ b/Demos/RNDISEthernet/makefile
@@ -548,10 +548,10 @@ flip-ee: $(TARGET).hex $(TARGET).eep
batchisp -hardware usb -device $(MCU) -operation start reset 0
dfu-ee: $(TARGET).hex $(TARGET).eep
- dfu-programmer $(MCU) erase
- dfu-programmer $(MCU) eeprom --debug 1 $(TARGET).eep
+ dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
dfu-programmer $(MCU) reset
+
# Generate avr-gdb config/init file which does the following:
# define the reset signal, load the target file, connect to target, and set
# a breakpoint at main().
@@ -690,10 +690,11 @@ clean: begin clean_list clean_binary end
clean_binary:
$(REMOVE) $(TARGET).hex
-
+
clean_list:
@echo $(MSG_CLEANING)
$(REMOVE) $(TARGET).eep
+ $(REMOVE) $(TARGET)eep.hex
$(REMOVE) $(TARGET).cof
$(REMOVE) $(TARGET).elf
$(REMOVE) $(TARGET).map
@@ -728,4 +729,4 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
finish end sizebefore sizeafter gccversion \
build elf hex eep lss sym coff extcoff \
clean clean_list clean_binary program debug \
-gdb-config doxygen dfu flip
+gdb-config doxygen dfu flip flip-ee dfu-ee