Take the 2-minute tour ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

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?

share|improve this question
    
How did you create the blink.cpp.hex file? –  jippie Oct 13 '12 at 9:04
    
I used the Arduino IDE. I got the path of the file from the Arduino IDE using the verbose output option in the settings. –  Alexis K Oct 13 '12 at 10:14
    
I think you should check Dave Tweed's answer. electronics.stackexchange.com/a/43538/8627 –  jippie Oct 13 '12 at 14:14
add comment

2 Answers

up vote 6 down vote accepted

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.

share|improve this answer
    
interesting. That makes sense. I'll look into the solution. Thanks for the answer. –  Alexis K Oct 14 '12 at 2:09
add comment

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
share|improve this answer
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.