5

I am trying to program a few Atmega328 (not Atmega328p) with an ICSP. These are TQFP.

What I am trying to do is to upload the program to a fresh chip without having to first load the bootloader. I use a command like this

avrdude -v -p m328 -c usbtiny -U flash:w:blink.cpp.hex:i

avrdude says it is uploaded successfully, but the program does not actually run.

However, when I first burn the bootloader, using the Arduino GUI, then use the command line and programmer to upload the program, the program does run. I am confused about why this is because my understanding was that the bootloader was not needed if the programming was done using the programmer.

Why is the bootloader needed?

Secondly, if the bootloader is needed, is there a way to make avrdude do everything to load the bootloader and the program in one line?

Alexis K
  • 2,719
  • 8
  • 30
  • 33

2 Answers2

7

To answer the first question, the bootloader is needed because your program is built in such a way that it depends on the bootloader residing at the reset address of the processor, and then having the bootloader jump to your program. It's a function of how the linker script and the run-time code is set up for the Arduino environment.

I don't know the precise answer to your second question, but it certainly should be possible.

An alternative solution would be to use a different linker script so that your program actually resides at the reset address.

Dave Tweed
  • 168,369
  • 17
  • 228
  • 393
4

I think Dave Tweed is right about the binary being compiled for use with the Arduino bootloader.

I use the following bash script to program ATtiny's and I often use single Arduino libraries. I cannot test your specific setup, but if you change the various variables it just might work.

#!/bin/bash

freq=9600000/8
baud=19200
src=main.cpp
avr=attiny13
dev=/dev/ttyUSB003

avr-gcc -g -DF_CPU=$freq -Wall -Os -mmcu=$avr -c -o tmp.o $src &&
avr-gcc -g -DF_CPU=$freq -Wall -Os -mmcu=$avr -o tmp.elf tmp.o &&
avr-objcopy -j .text -j .data -O ihex tmp.elf tmp.hex &&
avrdude -p $avr -cstk500v1 -P$dev -b$baud -v -U flash:w:tmp.hex
jippie
  • 33,033
  • 16
  • 93
  • 160