I\'ve uploaded a sketch to an Arduino Uno whose loop is something like this:
void loop(){
Serial.println(\"Hello, World!\");
}
So, now,
After scratching my head about this problem, here is a very simple solution that works anytime:
// Empty sketch to fix the upload problem
// Created by Eric Phenix
// Nov 2014
void setup()
{
}
// The loop routine runs over and over again forever:
void loop()
{
delay(1000);
}
Et voila!