You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite specifying -p m328p, it doesn't seem to see that that is what I have since it just returns the device signiture, and it also does not return the fuse bytes (although perhaps this was a change that was made since v7.0, since this issue all of a sudden appeared after I updated to that version.)
The text was updated successfully, but these errors were encountered:
K4LCIFER
changed the title
avrdude seems to no longer be able to read fuse bytes
avrdude seems to no longer be able to read fuse bytes, or recognize my mcu
May 16, 2022
- The "safemode" feature has been removed. The major class of
programmers it has been designed for (lowlevel bitbang
programmers on parallel or serial ports) virtually doesn't exist
anymore, and the fuse combination that was covered by it do not
match the fuses of modern AVR devices anyway.
Reading and displaying these fuse values has been part of "safemode".
Basically, you specified a command line that is not supposed to do anything beyond attaching to the ISP, and leaving it again. AVRDUDE does just this.
On the pro side: there is no error message, so the command tells you that your ISP connection is working fine.
If you want to do more, try "terminal mode" (-t). You can browse around interactively through your device, including the fuse values. Non-interactively, it would need -U options, like:
When I call avrdude to have it read from a chip, I get the following response:
Despite specifying
-p m328p
, it doesn't seem to see that that is what I have since it just returns the device signiture, and it also does not return the fuse bytes (although perhaps this was a change that was made since v7.0, since this issue all of a sudden appeared after I updated to that version.)The text was updated successfully, but these errors were encountered: