You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SupportedBoards.rst
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,11 +264,14 @@ Ganglion
264
264
265
265
**On Unix-like systems you may need to configure permissions for serial port or run with sudo.**
266
266
267
+
**Breaking change in 5.21.x, by default Ganglion board will use `FW version 3 <https://openbci.com/forum/index.php?p=/discussion/3721/ganglion-firmware-upgrade>`_, if you have FW version 2, you can force it using BrainFlowInputParams.**
268
+
267
269
To create such board you need to specify the following board ID and fields of BrainFlowInputParams object:
268
270
269
271
- :code:`BoardIds.GANGLION_BOARD`
270
272
- :code:`serial_port`, e.g. COM4, /dev/ttyACM0, etc
271
273
- *optoinal:* :code:`mac_address`, if not provided BrainFlow will try to autodiscover the device
274
+
- *optoinal:* :code:`other_info`, if not provided BrainFlow will use fw version 3, available options are: fw:auto, fw:2, fw:3
272
275
- *optional:* :code:`timeout`, timeout for device discovery, default is 15sec
Unlike Ganglion board this BrainFlow board does not use BLED112 dongle, so you need to have BLE support on your device in order to use it.
312
317
318
+
**Breaking change in 5.21.x, by default Ganglion board will use `FW version 3 <https://openbci.com/forum/index.php?p=/discussion/3721/ganglion-firmware-upgrade>`_, if you have FW version 2, you can force it using BrainFlowInputParams.**
319
+
313
320
To create such board you need to specify the following board ID and fields of BrainFlowInputParams object:
314
321
315
322
- :code:`BoardIds.GANGLION_NATIVE_BOARD`
@@ -321,6 +328,8 @@ Initialization Example:
321
328
.. code-block:: python
322
329
323
330
params = BrainFlowInputParams()
331
+
# Use it only if you have an old device with fw version 2
0 commit comments