*** empty log message ***

This commit is contained in:
dak664 2009-07-23 16:13:48 +00:00
parent 7af93463b5
commit c1b7375a5a
14 changed files with 190 additions and 93 deletions

View file

@ -1,9 +1,18 @@
all:
ifndef WEBDIR
OUTFILE=webserver6
else
OUTFILE=webserver6-$(WEBDIR)
endif
all:
make -f Makefile.webserver TARGET=avr-raven webserver6.elf
avr-objcopy -O ihex -R .eeprom -R .fuse -R .signature webserver6.elf webserver6.hex
avr-size -C --mcu=atmega1284p webserver6.elf
#can't just rename, webserver6 may be open in debugger
@if [ $(OUTFILE) != "webserver6" ]; then cp webserver6.elf $(OUTFILE).elf;fi
avr-objcopy -O ihex -R .eeprom -R .fuse -R .signature $(OUTFILE).elf $(OUTFILE).hex
avr-size -C --mcu=atmega1284p $(OUTFILE).elf
clean:
make -f Makefile.webserver TARGET=avr-raven clean
rm ../../platform/avr-raven/apps/raven-webserver/httpd-fsdata.c
rm symbols.c symbols.h webserver6.elf webserver6.hex
rm -rf obj_avr-raven

View file

@ -4,7 +4,10 @@ all: webserver6
APPS=raven-webserver raven-lcd-interface
TARGET=avr-raven
UIP_CONF_IPV6=1
#RF230BB=1 //Use radio driver that communicates with the core MAC layer. Still Experimental!
#RF230BB=1 //Use radio driver that communicates with the core MAC layer. Still Experimental!
#COFFEE_FILES=1 //Use coffee file system in EEPROM
#COFFEE_FILES=2 //Use coffee file system in program flash
#COFFEE_ADDRESS=0xnnnn //Override default coffee file system starting address
CONTIKI = ../..