Skip to content

Commit

Permalink
Merge branch 'main' into issue-277
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnew authored Sep 16, 2024
2 parents 729597b + 282b23c commit 83df7a2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion OpenEphys.Onix1/ConfigureBreakoutBoard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (debug, ubuntu-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (debug, ubuntu-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (debug, windows-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (debug, windows-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (release, ubuntu-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (release, ubuntu-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (release, windows-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'

Check warning on line 58 in OpenEphys.Onix1/ConfigureBreakoutBoard.cs

View workflow job for this annotation

GitHub Actions / build (release, windows-latest)

XML comment has badly formed XML -- 'End tag was not expected at this location.'
[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 @@ -68,7 +75,8 @@ internal override IEnumerable<IDeviceConfiguration> GetDevices()
yield return AnalogIO;
yield return DigitalIO;
yield return ClockOutput;
yield return MemoryMonitor;
yield return HarpInput;
yield return MemoryMonitor;
}
}
}

0 comments on commit 83df7a2

Please sign in to comment.