Encountered a bug in Arduino IDE 1.0.2
hi everyone 
i came across bug in arduino ide 1.0.2.
the bug when try upload code having following line
or
the code compiles successful, while uploading process starts , later hangs in between.
whereas following code works fine
and
can give try , let know whether encountered same problem
sample code

i came across bug in arduino ide 1.0.2.
the bug when try upload code having following line
code: [select]
serial.print("access denied !!!");
or
code: [select]
serial.println("access denied !!!");
the code compiles successful, while uploading process starts , later hangs in between.
whereas following code works fine
code: [select]
serial.print("access denied !!")
;and
code: [select]
serial.println("access denied !!");
can give try , let know whether encountered same problem
sample code
code: [select]
void setup()
{
serial.begin(9600);
}
void loop()
{
serial.println("access denied !!!");
delay(1000);
}
this has been discussed many many many times. there glitch in arduino mega 1280 bootloader wherby if 3 ! recieved in row, bootloader enters funny mode , doesn't complete upload.
simple work around not use "!!!" anywhere.
simple work around not use "!!!" anywhere.
Arduino Forum > Development > Suggestions for the Arduino Project > Encountered a bug in Arduino IDE 1.0.2
arduino
Comments
Post a Comment