Skip to content

Commit 198d296

Browse files
committed
Adjust baud rate
1 parent 4b1746b commit 198d296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/Portenta_Camera/extras/CameraRawBytesVisualizer/CameraRawBytesVisualizer.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ void setup()
2727
size(640, 480);
2828

2929
// if you have only ONE serial port active
30-
//myPort = new Serial(this, Serial.list()[0], 9600); // if you have only ONE serial port active
30+
//myPort = new Serial(this, Serial.list()[0], 921600); // if you have only ONE serial port active
3131

3232
// if you know the serial port name
33-
//myPort = new Serial(this, "COM5", 9600); // Windows
33+
//myPort = new Serial(this, "COM5", 921600); // Windows
3434
//myPort = new Serial(this, "/dev/ttyACM0", 921600); // Linux
35-
myPort = new Serial(this, "/dev/cu.usbmodem14401", 9600); // Mac
35+
myPort = new Serial(this, "/dev/cu.usbmodem14401", 921600); // Mac
3636

3737
// wait for full frame of bytes
3838
myPort.buffer(bytesPerFrame);

0 commit comments

Comments
 (0)