Created Tue, 29 Nov 2011 02:54:28 +0000 by Antonio
Tue, 29 Nov 2011 02:54:28 +0000
I'm trying to communicate with an Arduino using this simple code
void setup() {
Serial.begin(4400);
}
void loop() {
Serial.print(177,BYTE);
delay(500);
Serial.print(199,BYTE);
delay(500);
}
Its very simple, my doubt is, why after some time the led of the TX on my MAX32 turns off, at the begin it blinks every 500ms as is supposed. Even the TX led its not blinking is sending data.
Tue, 29 Nov 2011 04:56:22 +0000
There was a debug in millis(), and presumably delay(), relatively recently (causing it to break after about 107 seconds,)
https://github.com/chipKIT32/chipKIT32-MAX/issues/143
Tue, 29 Nov 2011 05:40:14 +0000
thx, i can see its solved on the new release :)