Blame | Last modification | View Log | SVN | RSS feed
# System specific configuration file# Define the command used to upload BIOS to the node# It will be executed as $(UPLOAD) $(ULFLAGS).# $(MCU) is the AVR to use and the file to upload is $(PRG).hexUPLOAD = avrdude#avrispv2 avr910ULFLAGS = -p $(MCU) -P /dev/ttyS0 -c avr910 -b 115200 -U flash:w:$(PRG).hexAVRDUDE_WRITE_FUSEBITS = -uifdef EXTFUSEAVRDUDE_WRITE_FUSEBITS += -U efuse:w:$(EXTFUSE):mendififdef HIGHFUSEAVRDUDE_WRITE_FUSEBITS += -U hfuse:w:$(HIGHFUSE):mendififdef LOWFUSEAVRDUDE_WRITE_FUSEBITS += -U lfuse:w:$(LOWFUSE):mendif#comment this line for not programming fusebitsULFLAGS += $(AVRDUDE_WRITE_FUSEBITS)