Skip to content

Commit 83df7a2

Browse files
authored
Merge branch 'main' into issue-277
2 parents 729597b + 282b23c commit 83df7a2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

OpenEphys.Onix1/ConfigureBreakoutBoard.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ public class ConfigureBreakoutBoard : MultiDeviceFactory
5454
[Category(DevicesCategory)]
5555
public ConfigureOutputClock ClockOutput { get; set; } = new();
5656

57+
/// Gets or sets the the Harp synchronization input configuration.
58+
/// </summary>
59+
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
60+
[Description("Specifies the configuration for the Harp synchronization input on the ONIX breakout board.")]
61+
[Category(DevicesCategory)]
62+
public ConfigureHarpSyncInput HarpInput { get; set; } = new();
63+
5764
/// <summary>
5865
/// Gets or sets the hardware memory monitor configuration.
5966
/// </summary>
@@ -68,7 +75,8 @@ internal override IEnumerable<IDeviceConfiguration> GetDevices()
6875
yield return AnalogIO;
6976
yield return DigitalIO;
7077
yield return ClockOutput;
71-
yield return MemoryMonitor;
78+
yield return HarpInput;
79+
yield return MemoryMonitor;
7280
}
7381
}
7482
}

0 commit comments

Comments
 (0)