Skip to content

Commit 894753c

Browse files
committed
Add ConfigureHarpSychInput to ConfigureBreakoutBoard
1 parent f48d2f2 commit 894753c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

OpenEphys.Onix1/ConfigureBreakoutBoard.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public class ConfigureBreakoutBoard : MultiDeviceFactory
4646
[Category(DevicesCategory)]
4747
public ConfigureBreakoutDigitalIO DigitalIO { get; set; } = new();
4848

49+
/// <summary>
50+
/// Gets or sets the the Harp synchronization input configuration.
51+
/// </summary>
52+
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
53+
[Description("Specifies the configuration for the Harp synchronization input on the ONIX breakout board.")]
54+
[Category(DevicesCategory)]
55+
public ConfigureHarpSyncInput HarpInput { get; set; } = new();
56+
4957
/// <summary>
5058
/// Gets or sets the hardware memory monitor configuration.
5159
/// </summary>
@@ -59,7 +67,8 @@ internal override IEnumerable<IDeviceConfiguration> GetDevices()
5967
yield return Heartbeat;
6068
yield return AnalogIO;
6169
yield return DigitalIO;
62-
yield return MemoryMonitor;
70+
yield return HarpInput;
71+
yield return MemoryMonitor;
6372
}
6473
}
6574
}

0 commit comments

Comments
 (0)