diff --git a/OpenEphys.Onix1/ConfigureBreakoutBoard.cs b/OpenEphys.Onix1/ConfigureBreakoutBoard.cs index bd31b6c..65e16db 100644 --- a/OpenEphys.Onix1/ConfigureBreakoutBoard.cs +++ b/OpenEphys.Onix1/ConfigureBreakoutBoard.cs @@ -54,6 +54,13 @@ public class ConfigureBreakoutBoard : MultiDeviceFactory [Category(DevicesCategory)] public ConfigureOutputClock ClockOutput { get; set; } = new(); + /// Gets or sets the the Harp synchronization input configuration. + /// + [TypeConverter(typeof(SingleDeviceFactoryConverter))] + [Description("Specifies the configuration for the Harp synchronization input on the ONIX breakout board.")] + [Category(DevicesCategory)] + public ConfigureHarpSyncInput HarpInput { get; set; } = new(); + /// /// Gets or sets the hardware memory monitor configuration. /// @@ -68,7 +75,8 @@ internal override IEnumerable GetDevices() yield return AnalogIO; yield return DigitalIO; yield return ClockOutput; - yield return MemoryMonitor; + yield return HarpInput; + yield return MemoryMonitor; } } }