Skip to content

Commit 2047a51

Browse files
committed
Fix error starting Streaming Board #1102
1 parent 2337772 commit 2047a51

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### Bug Fixes
44
- Fix NullPointerException when no Audio Device is available from the OS (Windows and Linux) #1109 #1086
55
- Fix LSL AvgBandPower data type only one value is sent #1098
6+
- Fix error starting BrainFlow Streaming Board from external process #1102
67

78
### Improvements
89
- Update to BrainFlow 5.6.1

OpenBCI_GUI/BoardBrainFlowStreaming.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class BoardBrainFlowStreaming extends BoardBrainFlow {
4545
BrainFlowInputParams params = new BrainFlowInputParams();
4646
params.ip_address = ipAddress;
4747
params.ip_port = ipPort;
48-
params.other_info = Integer.toString(masterBoardId.get_code(), 10);
48+
params.master_board = masterBoardId.get_code();
4949
return params;
5050
}
5151

0 commit comments

Comments
 (0)