Skip to content

Commit b078709

Browse files
author
jantje
committed
reduce the serial baud rate (for zero dbg)
1 parent 4f67d31 commit b078709

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

io.sloeber.tests/src/io/sloeber/core/CompileAndUpload.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public void verifySerialOutput(String serialDumpContent) {
208208
public void run() {
209209
SerialConnection.show();
210210
SerialConnection.clearMonitor();
211-
SerialConnection.add(comPort, 115200);
211+
SerialConnection.add(comPort, 9600);
212212
}
213213
});
214214

io.sloeber.tests/src/templates/fastBlink/sketch.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const long interval = INTERVAL; // interval at which to blink (millise
3333

3434
void setup() {
3535
pinMode(ledPin, OUTPUT);
36-
Serial.begin(115200);
36+
Serial.begin(9600);
3737
Serial.println(STR(SERIAlDUMP));
3838
}
3939

0 commit comments

Comments
 (0)