how to get test siganal form cyton board #678
Closed
ankur-gupta-29
started this conversation in
General
Replies: 1 comment 6 replies
-
Not sure I understand what the question is. You dont need to manually turn on the channels since there will be on by default, and call config_board with command from openbci docs between prepare_session and start_stream |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how to get testsignal form cyton board .where i add test signal control commnads
code--
board_shim.prepare_session()
board_shim.config_board("x1045110X")
board_shim.config_board("x2045110X")
board_shim.config_board("x3045110X")
board_shim.config_board("x4045110X")
board_shim.config_board("x5045110X")
board_shim.config_board("x6045110X")
board_shim.config_board("x7045110X")
board_shim.config_board("x8045110X")
board_shim.start_stream(450000, args.streamer_params)
openbci sdk details--
Test Signal Control Commands
0 - = p [ ]
Turn all available channels on, and connect them to internal test signal. These are useful for self test and calibration. For example, you can measure the internal noise by sending 0 which connects all inputs to an internal GND. If streaming, the stream will be stopped, the proper registers set on the ADS1299, and the stream will be resumed.
0 Connect to internal GND (VDD - VSS)
= Connect to test signal 1xAmplitude, fast pulse
p Connect to DC signal
[ Connect to test signal 2xAmplitude, slow pulse
] Connect to test signal 2xAmplitude, fast pulse
Note: Not all possible internal test connections are implemented here
returns If not streaming, returns Success: Configured internal test signal.$$$, if streaming, there is no confirmation.
Beta Was this translation helpful? Give feedback.
All reactions