Skip to content

Commit

Permalink
ID fixes and fixing example
Browse files Browse the repository at this point in the history
Fixing id gaps, id 60 reserved for OB5000

Fixing test changed
  • Loading branch information
AranRhiod committed Jan 7, 2025
1 parent 3b4bead commit 3f84870
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public enum BoardIds
NEUROPAWN_KNIGHT_BOARD(57),
SYNCHRONI_TRIO_3_CHANNELS_BOARD(58),
SYNCHRONI_OCTO_8_CHANNELS_BOARD(59),
OB5000_8_CHANNELS_BOARD(60),
SYNCHRONI_PENTO_8_CHANNELS_BOARD(61),
SYNCHRONI_UNO_1_CHANNELS_BOARD(62);

Expand Down
5 changes: 3 additions & 2 deletions julia_package/brainflow/src/board_shim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ export BrainFlowInputParams
NEUROPAWN_KNIGHT_BOARD = 57
SYNCHRONI_TRIO_3_CHANNELS_BOARD = 58
SYNCHRONI_OCTO_8_CHANNELS_BOARD = 59
SYNCHRONI_PENTO_8_CHANNELS_BOARD = 62
SYNCHRONI_UNO_1_CHANNELS_BOARD = 63
OB5000_8_CHANNELS_BOARD = 60
SYNCHRONI_PENTO_8_CHANNELS_BOARD = 61
SYNCHRONI_UNO_1_CHANNELS_BOARD = 62



Expand Down
2 changes: 1 addition & 1 deletion matlab_package/brainflow/BoardIds.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
NEUROPAWN_KNIGHT_BOARD(57)
SYNCHRONI_TRIO_3_CHANNELS_BOARD(58)
SYNCHRONI_OCTO_8_CHANNELS_BOARD(59)

OB5000_8_CHANNELS_BOARD(60)
SYNCHRONI_PENTO_8_CHANNELS_BOARD(61)
SYNCHRONI_UNO_1_CHANNELS_BOARD(62)

Expand Down
1 change: 1 addition & 0 deletions nodejs_package/brainflow/brainflow.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export enum BoardIds {
NEUROPAWN_KNIGHT_BOARD = 57,
SYNCHRONI_TRIO_3_CHANNELS_BOARD = 58,
SYNCHRONI_OCTO_CHANNELS_BOARD = 59,
OB5000_8_CHANNELS_BOARD = 60,
SYNCHRONI_PENTO_8_CHANNELS_BOARD = 61,
SYNCHRONI_UNO_1_CHANNELS_BOARD = 62

Expand Down
3 changes: 1 addition & 2 deletions python_package/examples/enophone/enophone_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ def main():

try:
# board_shim = BoardShim(BoardIds.ENOPHONE_BOARD, params)
# board_shim = BoardShim(BoardIds.SYNCHRONI_8_CHANNELS_BOARD, params)
board_shim = BoardShim(BoardIds.SYNCHRONI_3_CHANNELS_BOARD, params)
board_shim = BoardShim(BoardIds.ENOPHONE_BOARD, params)
board_shim.prepare_session()
board_shim.start_stream(450000, '')
Graph(board_shim)
Expand Down

0 comments on commit 3f84870

Please sign in to comment.