I successfully loaded the first blink sketch and got LED 13 blinking at a one second rate.
I changed the code to a 4 second blink and now the program will not load.
I verified the board type.
i am using ubuntu 12 and i am using /dev/ttyUSB0
Here is the compile line:
Binary sketch size: 1590 bytes (of a 258048 byte maximum)
I keep getting
Binary sketch size: 1590 bytes (of a 258048 byte maximum)
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
Here is the program:
int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay(4000);
digitalWrite(ledPin, LOW);
delay(1000);
}
I have read all over the net to find out that there is problems with the bootloader but I have no "!" marks in the code.
I have held the reset button down and tried it to no avail.
I have verified that the the little reset wire is still there for auto reset for program loading
I have tried every choice of programmer
LED 13 does go off when it starts trying to program and I see the other LEDs blink yellow.
But then I continue to get time outs
Sometimes it will load upto ~1380 bytes but never completes the load.
Any ideas would help,
Thank you

