We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f67d31 commit b078709Copy full SHA for b078709
io.sloeber.tests/src/io/sloeber/core/CompileAndUpload.java
@@ -208,7 +208,7 @@ public void verifySerialOutput(String serialDumpContent) {
208
public void run() {
209
SerialConnection.show();
210
SerialConnection.clearMonitor();
211
- SerialConnection.add(comPort, 115200);
+ SerialConnection.add(comPort, 9600);
212
}
213
});
214
io.sloeber.tests/src/templates/fastBlink/sketch.ino
@@ -33,7 +33,7 @@ const long interval = INTERVAL; // interval at which to blink (millise
33
34
void setup() {
35
pinMode(ledPin, OUTPUT);
36
- Serial.begin(115200);
+ Serial.begin(9600);
37
Serial.println(STR(SERIAlDUMP));
38
39
0 commit comments