URL:
<http://savannah.nongnu.org/bugs/?40157>
Summary: fuse labels printed incorrectly
Project: AVR Downloader/UploaDEr
Submitted by: jeffryr
Submitted on: Wed 02 Oct 2013 01:35:25 AM GMT
Category: None
Severity: 3 - Normal
Priority: 5 - Normal
Item Group: None
Status: None
Privacy: Public
Assigned to: None
Originator Name: jeffryr
Originator Email:
Open/Closed: Open
Discussion Lock: Any
_______________________________________________________
Details:
With verbosity >= 1, the extended and high fuse indicators are swapped:
avrdude -p m328p -c usbasp -U flash:w:blink_uart.hex -U
eeprom:w:blink_uart.eep -v
...
avrdude: safemode: lfuse reads as 62
avrdude: safemode: hfuse reads as D9
avrdude: safemode: efuse reads as 7
avrdude: safemode: Fuses OK (H:07, E:D9, L:62)
In main.c:
if (failures == 0) {
fprintf(stderr, "Fuses OK (H:%02X, E:%02X, L:%02X)\n",
safemode_efuse, safemode_hfuse, safemode_lfuse);
}
should be
if (failures == 0) {
fprintf(stderr, "Fuses OK (H:%02X, E:%02X, L:%02X)\n",
safemode_hfuse, safemode_efuse, safemode_lfuse);
}
or some other matching combination.
_______________________________________________________
Reply to this item at:
<http://savannah.nongnu.org/bugs/?40157>
_______________________________________________
Message sent via/by Savannah
http://savannah.nongnu.org/
_______________________________________________
avrdude-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/avrdude-dev