Is it possible to write an Arduino program to an AVR chip that does not have teh Arduino bootloader installed? What is the process to do so?
Step 1: Get yourself a programmer.This can be anything from a USBasp to an Arduino programmed for ISP all the way to an AVR ONE!. Some can be used from the IDE, and some cannot. Step 2: Set up the chip as expected from the entry in boards.txt and from the datasheet.Add a crystal, decoupling caps, whatever. Don't connect power yet. Step 3: Connect the programmer.If using ISP, connect the ISP pins. If using JTAG, connect the JTAG pins. If using something else, see the programmer and chip documentation for connection details. You may want to connect power at this point for the next step. Step 4: Program fuses.Program the oscillator, BOR, CKDIV8, EESAVE fuses as desired/required. Fuse calculator. Step 5: Compile the program and write it to the chip.If using the IDE, select the programmer in Step 6: There is no step 6. You're done.I just wanted to see if you would read this far. |
|||
|
If there are no memory restrictions (too large program) which eliminates this option, I'd try to write the Arduino bootloader first and then continue normally. This has the advantage of simple reprogramming if required. |
|||
|