mahmoud2 / pinguino32

Automatically exported from code.google.com/p/pinguino32
0 stars 0 forks source link

Code compiled despite commented out #10

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When following code is compiled and run all is normal:
Code:
void setup()
{
    pinMode(GREENLED, OUTPUT);
    Serial.println("\r\n*  Pinguino SD demo  *");
}

void loop()
{
    toggle(GREENLED);
    delay(500);
/*
//    SD.unmount();
*/
}
When the double slash is removed in front of "SD.unmount" the compile time is 
much longer and code will not run despite of this code is still commented out 
by the "/*" and "*/"-combination.
Send this user an email

Original issue reported on code.google.com by hgmvanbeek on 8 Apr 2012 at 4:09

GoogleCodeExporter commented 9 years ago

Original comment by rblanchot@gmail.com on 23 Apr 2013 at 7:24