Hi all,
I've been trying to program an ATTiny 85 with avrdude using an Arduino uno as ISP. The program seems to upload fine (see below) but then it just does not run on the tiny, once it's done uploading.
I don't think it's a wiring issue, I tried with a tiny13 and had the same outcome. Must be something I'm doing wrong in the avrdude command?
I tried 9600 bauds and it failed. I set the fuses on the tiny to run at 8MHz on the internal oscillator.
Any help would be appreciated!
Cheers
Fred
C:\avrdude -C ..\etc\avrdude.conf -c arduino -p attiny85 -P com5 -b 19200 -D -U flash:w:blin
k.cpp.hex
avrdude: please define PAGEL and BS2 signals in the configuration file for part
ATtiny85
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% 0.02s
avrdude: Device signature = 0x1e930b
avrdude: reading input file "blink.cpp.hex"
avrdude: input file blink.cpp.hex auto detected as Intel Hex
avrdude: writing flash (916 bytes):
Writing | ################################################## | 100% 1.62s
avrdude: 916 bytes of flash written
avrdude: verifying flash memory against blink.cpp.hex:
avrdude: load data flash data from input file blink.cpp.hex:
avrdude: input file blink.cpp.hex auto detected as Intel Hex
avrdude: input file blink.cpp.hex contains 916 bytes
avrdude: reading on-chip flash data:
Reading | ################################################## | 100% 1.18s
avrdude: verifying ...
avrdude: 916 bytes of flash verified
avrdude: safemode: Fuses OK
avrdude done. Thank you.