Skip to content

Commit 7a2895c

Browse files
authored
Merge pull request #548 from open-ephys/issue-543
Set Rhd2164 DspCutoff to Off
2 parents 7d5bf0a + 325d7a3 commit 7a2895c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

OpenEphys.Onix1/ConfigureRhd2164.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,14 @@ public ConfigureRhd2164(ConfigureRhd2164 configureRhd2164)
5050
/// <summary>
5151
/// Gets or sets the cutoff frequency for the digital (post-ADC) high-pass filter used for amplifier offset removal.
5252
/// </summary>
53+
/// <remarks>
54+
/// The amplifiers on the RHD2164 chip, past the analog filter, introduce a DC offset that varies with each channel.
55+
/// The <see cref="Rhd2164DspCutoff"/> exists to remove this DC offset and ensure that all signals are centered at zero.
56+
/// With it disabled, all the signals will appear centered at different values.
57+
/// </remarks>
5358
[Category(ConfigurationCategory)]
5459
[Description("Specifies the cutoff frequency for the digital (post-ADC) high-pass filter used for amplifier offset removal.")]
55-
public Rhd2164DspCutoff DspCutoff { get; set; } = Rhd2164DspCutoff.Dsp146mHz;
60+
public Rhd2164DspCutoff DspCutoff { get; set; } = Rhd2164DspCutoff.Off;
5661

5762
/// <summary>
5863
/// Gets or sets the low cutoff frequency of the analog (pre-ADC) bandpass filter.

0 commit comments

Comments
 (0)