Skip to content

Commit 0aa4d14

Browse files
authored
Merge pull request #1118 from OpenBCI/1102-error-starting-streaming-board-from-external-brainflow-process
Fix error starting streaming board from external brainflow process
2 parents fcbbd91 + 2047a51 commit 0aa4d14

3 files changed

Lines changed: 9 additions & 12 deletions

File tree

.github/ISSUE_TEMPLATE/issue.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,28 @@ assignees: ''
99

1010
## Problem
1111

12-
Explain the problem
12+
Explain the problem.
1313

1414
## Expected
1515

1616
In a perfect world, what do you expect to happen.
1717

1818
## Operating System and Version
1919

20-
macOS/Windows/Linux
20+
macOS/Windows/Linux - Example: MacOS 10.15.7
2121

2222
## GUI Version
2323

24-
The version is displayed on startup.
24+
The version is displayed on startup and at the top of every Console Log.
2525

26-
## Running standalone app
26+
## Are you running the downloaded app or from Processing/VSCode?
2727

28-
Are you running the downloaded app or are you running from Processing or Visual Studio Code?
28+
The downloaded app or compiling and running the code.
2929

3030
## Type of OpenBCI Board
3131

3232
Cyton/Cyton+Daisy/Ganglion
3333

34-
## Are you using a WiFi Shield?
34+
## Console Log and Screenshots
3535

36-
Yes/No
37-
38-
## Console Log
39-
40-
Paste any relevant text from the console window here
36+
Paste any relevant text from the console window here, as well as any helpful screenshots of the GUI.

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)