On 10/2/06, dimax un <[EMAIL PROTECTED]> wrote:
If all you need is to program two hex files into flash why not to do it?
You can use following trick:
1. avr-objcopy hex1 to bin1
2. avr-objcopy hex2 to bin2
3. merge bin1 and bin2 (may require some scripting). Take care to add
bin2 to bin1 at the correct address where the bootloader starts.
4. avr-objcopy bin12 to hex12

Try...

      cat bootloader.hex application.hex >image.hex

Cheers,
Shaun


_______________________________________________
AVR-GCC-list mailing list
AVR-GCC-list@nongnu.org
http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Reply via email to