[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[avr-gcc-list] Re: Device fuses
From: |
Anton Erasmus |
Subject: |
[avr-gcc-list] Re: Device fuses |
Date: |
Sun, 23 Apr 2006 23:08:02 +0200 |
On 22 Apr 2006 at 10:09, Ned Konz wrote:
>
> On Apr 21, 2006, at 11:18 PM, Björn Haase wrote:
>
> >> "Anton Erasmus" <address@hidden> wrote:
> >>
> >> Wouldn't it be worthwhile to add a method of specifying device fuses
> >> in the C or assembler source file ?
> >> I think something similar to the way the EEPROM and PROGRAM memory is
> >> handled.
> >>
> >> something like:
> >
> > That would not be difficult at all. One could agree on the name of
> > some
> > section that contains data for the fuses and the lock-bits. One
> > would do
> > something like:
> >
> > #define SET_FUSE_BITS(F1,F2,F3,L) unsigned char fuses[4]
> > __attribute___
> > ((section (".fuses"))) = {F1,F2,F3,L};
> >
> > The more time-consuming thing would be to teach your favorite
> > programming tool
> > to actually use the data in the .elf file.
> >
>
> Not at all...
>
> #!/bin/bash
> myprogram=$1; shift
> avr-objcopy -j .fuses -O binary ${myprogram} fuses.bin
> avrdude -p atmega128 -U lfuse:w:m:$(od -A n -t x1 -j 0 -N 1 fuses.bin
> | tr -d ' ')
> avrdude -p atmega128 -U hfuse:w:m:$(od -A n -t x1 -j 1 -N 1 fuses.bin
> | tr -d ' ')
> avrdude -p atmega128 -U efuse:w:m:$(od -A n -t x1 -j 2 -N 1 fuses.bin
> | tr -d ' ')
> avrdude -p atmega128 -U lock:w:m:$(od -A n -t x1 -j 3 -N 1 fuses.bin
> | tr -d ' ')
>
This is excellent. I think adding definitions for the various fuses for the
various device
types in the io header files + some docs on how to use it, would make life a
lot easier.
It seems that you are already using this approach. Have you defined macros that
helps
in generating the correct fuse values ?
Regards
Anton Erasmus--
A J Erasmus
- [avr-gcc-list] Re: AVR-GCC-list Digest, Vol 15, Issue 18- Device fuses, Björn Haase, 2006/04/22
- [avr-gcc-list] Re: Device fuses, Ned Konz, 2006/04/22
- [avr-gcc-list] Re: Device fuses,
Anton Erasmus <=
- Re: [avr-gcc-list] Re: Device fuses, Ned Konz, 2006/04/25
- Re: [avr-gcc-list] Re: Device fuses, dimax un, 2006/04/25
- Re: [avr-gcc-list] Re: Device fuses, Ned Konz, 2006/04/28
- Re: [avr-gcc-list] Re: Device fuses, dimax un, 2006/04/28
- Re: [avr-gcc-list] Re: Device fuses, Dave Hylands, 2006/04/28
- Re: [avr-gcc-list] More on C macros vs. C++ templates, Ned Konz, 2006/04/28
- Re: [avr-gcc-list] More on C macros vs. C++ templates, Dave Hylands, 2006/04/28
- Re: [avr-gcc-list] Re: Device fuses, Ned Konz, 2006/04/28