Hi !
My Application is using the EEPROM memory and defines some constants in it. How do i modify the makefile, that it generates the .eep file with the EEPROM values in it? With the default makefile there is no output for this file.
Regards,
Dirk
Makefile how to create the .eep file
Thanks Christian, sometimes the things are so easy...
This gives you main.hex and main.eep .
Regards,
Dirk
Code: Select all
main.hex: main.bin
rm -f main.hex
avr-objcopy -j .text -j .data -O ihex main.bin main.hex
avr-objcopy -j .eeprom -O ihex main.bin main.eep
This gives you main.hex and main.eep .
Regards,
Dirk
Re: Makefile how to create the .eep file
how do i make a software with which i can write specific information at specified memory of AVR microcontroller?
do i use this command as well?
do i use this command as well?