We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2337772 commit 2047a51Copy full SHA for 2047a51
2 files changed
CHANGELOG.md
@@ -3,6 +3,7 @@
3
### Bug Fixes
4
- Fix NullPointerException when no Audio Device is available from the OS (Windows and Linux) #1109 #1086
5
- Fix LSL AvgBandPower data type only one value is sent #1098
6
+- Fix error starting BrainFlow Streaming Board from external process #1102
7
8
### Improvements
9
- Update to BrainFlow 5.6.1
OpenBCI_GUI/BoardBrainFlowStreaming.pde
@@ -45,7 +45,7 @@ class BoardBrainFlowStreaming extends BoardBrainFlow {
45
BrainFlowInputParams params = new BrainFlowInputParams();
46
params.ip_address = ipAddress;
47
params.ip_port = ipPort;
48
- params.other_info = Integer.toString(masterBoardId.get_code(), 10);
+ params.master_board = masterBoardId.get_code();
49
return params;
50
}
51
0 commit comments