Am 11.04.17 um 00:03 schrieb Sam Voss:
I was wondering if it was possible to compare the hex file that is currently on the chip to hex files on the host and determine which (if any) were the flashed version?
With avrdude you could do this: avrdude -p m8 -c avr910 -P /dev/ttyUSB0 -U flash:r:flash.hex:i This will write the content of the microcontroller to the file flash.hex. But when compared the contents of flash.hex with your hex file usally you will get a difference even the content is the same. So it needs to convert to binary first to compare the two hex files. Rolf _______________________________________________ AVR-chat mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/avr-chat
