
Hi!
Would like report strange thing that I found.
My env.: WInXp, IDE 1.0.3 , Mega 2560
Problem: IDE hangs when sending program to arduino board. Hangs mean that progress bar get 95% and stop. If disconnect usb, IDE continue work as usual.
Reason: thi ONLY happen if program have 3 or more "!"
For example:
Serial.println("Huray!!!"); - hangs
Serial.println("Huray!!"); - sent and work ok.
This happen even with BareMinimun program:
void setup() {
Serial.begin(9600);
Serial.println("Huray!!!");
}
void loop(){
}
Interesting is it only my local bug or IDE feature?
Thanks and have a nice day.
-=mishka=-