File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments