Skip to content

Commit b5edcf0

Browse files
committed
Reduced obscenely high baud rate.
Earlier, I believed the reason that the project was experiencing lag was because of a low baud rate, and I jacked it up to a very high level. It turns out that the baud rate was not causing the problem, and the extrememly high setting is actually now causing other issues on certain computers. Reducing the baud rate to the standard 9600 Hz.
1 parent cfcb6fe commit b5edcf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibMyoStream.pde

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class Sample {
113113

114114

115115
private class Bluetooth {
116-
final int BAUD_RATE = 256000;
116+
final int BAUD_RATE = 9600;
117117

118118
// When attempting to auto-detect the myo dongle, a request for discovery
119119
// messages is sent across each serial port prompting the armband to

0 commit comments

Comments
 (0)