avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-gcc-list] avrdude, read fuse bits?


From: User Tomdean
Subject: Re: [avr-gcc-list] avrdude, read fuse bits?
Date: Tue, 2 Aug 2005 09:37:00 -0700 (PDT)

$(ADUDE) -u -Ulfuse:r:$(FUSE_L):m
                               ^^^
                                |

:m is used to supply immediate data used for, example, in writing
fuses.

-q will eliminate the progress bar.  The code for Version 4.4.0cvs is
 sprinkled with 'fprintf(stderr'.  So, all the messages go to stderr.
 One could redirect all stdout and stderr to a file and put the
 desired output in a named file.  On BSD, using tcsh,

$(ADUDE) -u -Ulfuse:r:$(FUSE_L):r >& /dev/null

writes lfuse data to $(FUSE_L) in raw format while discarding all the
text output.  I do not know the Windows syntax for this, or even if
you can do it.  You can redirect Windows stdout to a file...

-v will set verbose mode and show version.

tomdean




reply via email to

[Prev in Thread] Current Thread [Next in Thread]