Hi there. I am gradually sifting through problems with building my own
board based on the stand alone schematic.
Right now I have got pin 13 blinking which I infer means the boot is active.
If I try to program from the arduino gui I get a "Programmer is not responding" error
with a little number 1 in the corner.
AFter a lot of no luck with uisp, I finally managed to program the
bootloader using avrdude and these lines (b.hex being the boot)
avrdude -p m8 -c bascom -f i -i b.hex
There was one error at the bottom, I'm not sure if that would affect things.. any ideas??????
--------------snip---------------------
C:\avrdude\bin>avrdude -p m8 -c bascom -f i -i b.hex
avrdude: WARNING: the -f, -i, -I, -o, and -m options are deprecated.
Please use the -U option instead.
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% -0.00s
avrdude: Device signature = 0x1e9307
avrdude: reading input file "b.hex"
avrdude: writing flash (8184 bytes):
Writing | ################################################## | 100% 3.96s
avrdude: 8184 bytes of flash written
avrdude: verifying flash memory against b.hex:
avrdude: load data flash data from input file b.hex:
avrdude: input file b.hex contains 8184 bytes
avrdude: reading on-chip flash data:
Reading | ################################################## | 100% 2.76s
avrdude: verifying ...
avrdude: verification error, first mismatch at byte 0x0000
0xff != 0x12
avrdude: verification error; content mismatch
avrdude done. Thank you.
-------------------snip------------------------