Skip to content

Commit

Permalink
fix missed board_id (#272)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey1994 <[email protected]>
  • Loading branch information
Andrey1994 authored Apr 16, 2021
1 parent bb86954 commit a9fd1cd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ public enum BoardIds
NOTION_2_BOARD = 14,
IRONBCI_BOARD = 15,
GFORCE_PRO_BOARD = 16,
FREEEEG32_BOARD = 17
FREEEEG32_BOARD = 17,
BRAINBIT_BLED_BOARD = 18
};


Expand Down
3 changes: 2 additions & 1 deletion java-package/brainflow/src/main/java/brainflow/BoardIds.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ public enum BoardIds
NOTION_2_BOARD (14),
IRONBCI_BOARD (15),
GFORCE_PRO_BOARD (16),
FREEEEG32_BOARD (17);
FREEEEG32_BOARD (17),
BRAINBIT_BLED_BOARD (18);

private final int board_id;
private static final Map<Integer, BoardIds> bi_map = new HashMap<Integer, BoardIds> ();
Expand Down
1 change: 1 addition & 0 deletions julia-package/brainflow/src/board_shim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export BrainFlowInputParams
IRONBCI_BOARD = 15
GFORCE_PRO_BOARD = 16
FREEEEG32_BOARD = 17
BRAINBIT_BLED_BOARD = 18

end

Expand Down
1 change: 1 addition & 0 deletions matlab-package/brainflow/BoardIDs.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
IRONBCI_BOARD(15)
GFORCE_PRO_BOARD(16)
FREEEEG32_BOARD(17)
BRAINBIT_BLED_BOARD(18)
end
end
1 change: 1 addition & 0 deletions python-package/brainflow/board_shim.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class BoardIds(enum.IntEnum):
IRONBCI_BOARD = 15 #:
GFORCE_PRO_BOARD = 16 #:
FREEEEG32_BOARD = 17 #:
BRAINBIT_BLED_BOARD = 18 #:


class LogLevels(enum.IntEnum):
Expand Down

0 comments on commit a9fd1cd

Please sign in to comment.