You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Board: Sparkfun RedBoard Artemis ATP
Arduino Version: 1.8.13
Sparkfun Apollo3 Boards version 2.0.6, 2.0.3, and I assume the versions in between. This issue does not occur in version 1.2.1.
With the following sketch (derived from this example):
#defineBAUD115200// any number, common choices: 9600, 115200, 230400, 921600
#defineCONFIG SERIAL_8N1 // a config value from HardwareSerial.h (defaults to SERIAL_8N1)int count = 0;
voidsetup() {
Serial.begin(BAUD); // set the baud rate with the begin() method
Serial.println("\n\nApollo3 - Serial");
}
voidloop() {
Serial.print("Count: ");
Serial.print(count++);
Serial.print("");
Serial.println(millis());
delay(1000);
}
After uploading and running it hangs at step 1430 (or, occasionally 1431):
I have tested this on two different ATP boards and had a friend try on his as well.
This Issue occurred in all cases that was compiled with the V2 series Arduino_Apollo3.