bugAVR Downloader/UploaDEr - Bugs: bug #40157, fuse labels printed incorrectly

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #40157: fuse labels printed incorrectly

Submitter:  Jeffry R. Abramson <jeffryr>
Submitted:  Wed 02 Oct 2013 01:35:25 AM UTC
   
 
Category:  None Severity:  3 - Normal
Priority:  5 - Normal Item Group:  None
Status:  Duplicate Privacy:  Public
Assigned to:  None Originator Name:  jeffryr
Open/Closed:  Closed Release:  None
Programmer hardware:  Device type: 

Fri 02 May 2014 07:47:31 AM UTC, comment #2: 


> Dup for bug #40085, already fixed in source code (thus closed).

Seems you forgot to actually close this issue (it's just marked as duplicate).

Matthijs Kooijman <matthijs>
Wed 02 Oct 2013 04:58:44 AM UTC, comment #1: 

Dup for bug #40085, already fixed in source code (thus closed).

Joerg Wunsch <joerg_wunsch>
Group administrator
Wed 02 Oct 2013 01:35:25 AM UTC, original submission:  

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.

Jeffry R. Abramson <jeffryr>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by rliebscher (Updated the item)
  • -email is unavailable- added by matthijs (Posted a comment)
  • -email is unavailable- added by joerg_wunsch (Posted a comment)
  • -email is unavailable- added by jeffryr (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

     

    Follow 2 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2014-06-21 rliebscher Open/ClosedOpen Closed
    2013-10-02 joerg_wunsch StatusNone Duplicate

    Back to the top

    Powered by Savane 3.13-02a9.
    Corresponding source code