|
From: Erich W. <ew....@na...> - 2010-07-01 20:00:36
|
Hi,
> I can't figure out what to do with the eep-file. I feel lost. I guess
> I have to start from the beginning..
>
The .eep.hex file is the content of the eeprom. It is absolutely neccessary
for amforth to operate.
I use this command via a make file
TARGET = main
MCU=atmega32
SP12=-c sp12 -i 10 -P /dev/parport0
BURNER=$(SP12)
AVRDUDE=avrdude
AVRDUDE_FLAGS=-q $(BURNER) -p $(MCU)
install: $(TARGET).hex
$(AVRDUDE) $(AVRDUDE_FLAGS) -e -U flash:w:$(TARGET).hex:i -U eeprom:w:$(TARGET).eep.hex:i
please adjust to your settings.
Have fun,
Erich
|