Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ConfigureHarpSychInput to ConfigureBreakoutBoard #298

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion OpenEphys.Onix1/ConfigureBreakoutBoard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ public class ConfigureBreakoutBoard : MultiDeviceFactory
[Category(DevicesCategory)]
public ConfigureBreakoutDigitalIO DigitalIO { get; set; } = new();

/// <summary>
/// Gets or sets the the Harp synchronization input configuration.
/// </summary>
[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();

/// <summary>
/// Gets or sets the hardware memory monitor configuration.
/// </summary>
Expand All @@ -59,7 +67,8 @@ internal override IEnumerable<IDeviceConfiguration> GetDevices()
yield return Heartbeat;
yield return AnalogIO;
yield return DigitalIO;
yield return MemoryMonitor;
yield return HarpInput;
yield return MemoryMonitor;
}
}
}