Environment: Windows 7
Maple IDE, version 0.0.11
Sparkfun USB to rs-232 converter on serial2
Code:
int loopcount = 0;
void setup(){
Serial2.begin(115200);
Serial2.println("Maple Mini");
while (1 < 2){
Serial2.println(loopcount);
loopcount++;
delay(1000);
}
}
I am getting really strange results.
It looks like loopcount is counting at full speed without the delay() function working at all. Could someone please cross check this result?