Skip to content

Commit fab27d8

Browse files
committed
Add missing XML comments
1 parent 5ebf563 commit fab27d8

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

OpenEphys.Onix1/Rhs2116DataFrame.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class Rhs2116DataFrame : BufferedDataFrame
1919
/// <param name="hubClock">An array of hub clock counter values.</param>
2020
/// <param name="amplifierData">An array of multi-channel amplifier data.</param>
2121
/// <param name="dcData">An array of multi-channel DC data.</param>
22+
/// <param name="recoveryMask">An array of stimulus artifact recovery mask values.</param>
2223
public Rhs2116DataFrame(ulong[] clock, ulong[] hubClock, Mat amplifierData, Mat dcData, ushort[] recoveryMask)
2324
: base(clock, hubClock)
2425
{

OpenEphys.Onix1/Rhs2116PairData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ public class Rhs2116PairData : Source<Rhs2116PairDataFrame>
3131
/// This property determines the number of samples that are collected from each of the 32
3232
/// electrophysiology channels before data is propagated. For instance, if this value is set to 30,
3333
/// then 32x30 samples, along with 30 corresponding clock values, will be collected and packed into
34-
/// each <see cref="Rhs211Pair6DataFrame"/>. Because channels are sampled at ~30 kHz, this is equivalent
34+
/// each <see cref="Rhs2116PairDataFrame"/>. Because channels are sampled at ~30 kHz, this is equivalent
3535
/// to ~1 millisecond of data from each channel.
3636
/// </remarks>
3737
public int BufferSize { get; set; } = 30;
3838

3939
/// <summary>
4040
/// Generates a sequence of <see cref="Rhs2116PairDataFrame"/>s.
4141
/// </summary>
42-
/// <returns>A sequence of <see cref="Rhs211Pair6DataFrame"/>s.</returns>
42+
/// <returns>A sequence of <see cref="Rhs2116PairDataFrame"/>s.</returns>
4343
public unsafe override IObservable<Rhs2116PairDataFrame> Generate()
4444
{
4545
var bufferSize = BufferSize;

OpenEphys.Onix1/Rhs2116PairDataFrame.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class Rhs2116PairDataFrame : BufferedDataFrame
1414
/// <param name="hubClock">An array of hub clock counter values.</param>
1515
/// <param name="amplifierData">An array of multi-channel amplifier data.</param>
1616
/// <param name="dcData">An array of multi-channel DC data.</param>
17+
/// <param name="recoveryMask">An array of stimulus artifact recovery mask values.</param>
1718
public Rhs2116PairDataFrame(ulong[] clock, ulong[] hubClock, Mat amplifierData, Mat dcData, uint[] recoveryMask)
1819
: base(clock, hubClock)
1920
{

OpenEphys.Onix1/Rhs2116TriggerDataFrame.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public enum Rhs2116TriggerOrigin : byte
9494
Gpio = 0x1,
9595

9696
/// <summary>
97-
/// Specifies the source of the trigger is a a register.
97+
/// Specifies the source of the trigger is a register.
9898
/// </summary>
9999
Register = 0x2,
100100

0 commit comments

Comments
 (0)