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