The RW line is grounded so i guess it uses delays as you say.
Guido at tuxgraphics suggested it might be a fuses issue and has asked me to check, from what i see they're set as they should be
From the make file:
#-------------------
# fuse byte settings:
# Atmel AVR ATmega8
# Fuse Low Byte = 0xe1 (1MHz internal), 0xe4 (8MHz internal)
# Fuse Low Byte with BOD = 0xa1 (1MHz internal), 0xa4 (8MHz internal)
# Fuse High Byte = 0xd9
# Factory default is 0xe1 for low byte and 0xd9 for high byte
# Check this with make rdfuses
rdfuses:
$(LOADCMD) -p $(DUDECPUTYPE) -c usbtiny -v -q
# use internal RC oscillator 8 Mhz (lf=0xe4 hf=0xd9)
fuses:
$(LOADCMD) -p $(DUDECPUTYPE) -c usbtiny -u -v -U lfuse:w:0xa4:m
$(LOADCMD) -p $(DUDECPUTYPE) -c usbtiny -u -v -U hfuse:w:0xd9:m
fuse:
$(LOADCMD) -p $(DUDECPUTYPE) -c usbtiny -u -v -U lfuse:w:0xa4:m
$(LOADCMD) -p $(DUDECPUTYPE) -c usbtiny -u -v -U hfuse:w:0xd9:m
Checking using avrdude
C:\Users\Chet>avrdude -P USB -p m8 -c usbtiny -v -q
avrdude: Version 5.10, compiled on Jan 19 2010 at 10:45:23
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2009 Joerg Wunsch
System wide configuration file is "C:\WinAVR-20100110\bin\avrdude.conf"
Using Port : USB
Using Programmer : usbtiny
AVR Part : ATMEGA8
Chip Erase delay : 10000 us
PAGEL : PD7
BS2 : PC2
RESET disposition : dedicated
RETRY pulse : SCK
serial program mode : yes
parallel program mode : yes
Timeout : 200
StabDelay : 100
CmdexeDelay : 25
SyncLoops : 32
ByteDelay : 0
PollIndex : 3
PollValue : 0x53
Memory Detail :
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Max
W ReadBack
----------- ---- ----- ----- ---- ------ ------ ---- ------ ----- ---
-- ---------
eeprom 4 20 128 0 no 512 4 0 9000 90
00 0xff 0xff
flash 33 10 64 0 yes 8192 64 128 4500 45
00 0xff 0x00
lfuse 0 0 0 0 no 1 0 0 2000 20
00 0x00 0x00
hfuse 0 0 0 0 no 1 0 0 2000 20
00 0x00 0x00
lock 0 0 0 0 no 1 0 0 2000 20
00 0x00 0x00
calibration 0 0 0 0 no 4 0 0 0
0 0x00 0x00
signature 0 0 0 0 no 3 0 0 0
0 0x00 0x00
Programmer Type : USBtiny
Description : USBtiny simple USB programmer, http://www.ladyada.net
/make/usbtinyisp/
avrdude: programmer operation not supported
avrdude: Using SCK period of 10 usec
avrdude: AVR device initialized and ready to accept instructions
avrdude: Device signature = 0x1e9307
avrdude: safemode: lfuse reads as A4
avrdude: safemode: hfuse reads as D9
avrdude: safemode: lfuse reads as A4
avrdude: safemode: hfuse reads as D9
avrdude: safemode: Fuses OK
avrdude done. Thank you.
I'm assuming the A4 and D9 bits are the only important things to compare?