[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[avrdude-dev] [bug #40157] fuse labels printed incorrectly
From: |
Jeffry R. Abramson |
Subject: |
[avrdude-dev] [bug #40157] fuse labels printed incorrectly |
Date: |
Wed, 02 Oct 2013 01:35:26 +0000 |
User-agent: |
Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1 |
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] [bug #40157] fuse labels printed incorrectly,
Jeffry R. Abramson <=