Contributions:RipplePyADC
Introduction
MicroLeadsADC is a source module that allows for utilization of the Micro-Leads StimZ recording and stimulation device within BCI2000.
Video Overview
Versioning
Authors
- Dhruva Mehta (mehta@neurotechcenter.org)
Version History
- 9/22/2023 Initial Creation and Setup
Source Code Revisions
- Initial development:
- Tested under:
- Known to compile under:
- Broken since: --
Known Issues
Using the RipplePyADC
To use the Ripple Python ADC, you will need to have a Ripple device that works with Trellis and Ripple's Python API. You will also need a computer set up with both BCI2000 and BCPy2000, which we will go over later.
Initial Setup
Trellis
Python API
If you have access to the Python API,
Verifying Device Properties
How to set up with BCPy2000
Now we will set up the research PC. First, follow the BCPy2000 installation guide found [[1]] to install BCPy2000 and compile the solution on your PC.
Creating a Batch File
Debugging
Parameters
SourceCh
The total number of digitized and stored channels. Because of device limitations, this is set to 4 channels explicitly.
SampleBlockSize
Samples per channel per digitized block. Together with the sampling rate, this parameter determines how often per second data are collected, processed, and feedback is updated. For example, at 1000 Hz sampling and a SampleBlockSize of 20, the system (e.g., source signal display, signal processing, and stimulus presentation) will be updated 50 times per second.
SamplingRate
The sample rate of the system. This parameter can be changed, however it will be overridden by the source module depending on the data stream type that you choose.
SourceChOffset
Offset for each channel.
SourceChGain
Gain for each channel.
ChannelNames
Names of each channel.
ReferenceCh
This list defines what channels will be used as reference. This list is uploaded to the device and set in hardware, effecting the raw bio-signal data that is recorded by BCI2000. If you do not want to effect the raw bio-signal data that is recorded, you can use the spatial filter. If this parameter is set to auto, no reference channels are used.
DataStream
The type of data stream you would like to use for acquisition. There are six types of data streams you can use, each with different frequencies:
| Stream | Frequency (kHz) |
|---|---|
| raw | 30 |
| lfp | 1 |
| hires | 2 |
| hifreq | 15 |
| emg | 15 |
| status | 2 |
SpecificChannels
Here, you can choose which channels you want to actually acquire data from, just put the number of the channel you would like in a corresponding list section. Channel numbers start with 0. You can choose any number of channels by readjusting the list matrix size. Numbers do not need to be in ascending order, however the channels will appear in order they are put in the list from top to bottom.