Skip to content

Commit

Permalink
Display drivr translator information on clroni-repl
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnew committed Jan 10, 2024
1 parent a5f43a0 commit e1b0916
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions api/clroni/clroni-repl/Repl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ static void Main(string[] args)
{
using (var ctx = new Context(o.Driver, o.Slot))
{
Console.WriteLine(string.Format("Loaded driver: {0} v{1}.{2}.{3}-{4}",
ctx.Driver.Name, ctx.Driver.Major, ctx.Driver.Minor, ctx.Driver.Patch, ctx.Driver.PreRelease));

// Show device table
Console.WriteLine("Found the following devices:");
Console.Write(Helpers.DeviceTableString(ctx));
Expand Down
2 changes: 1 addition & 1 deletion api/clroni/clroni-repl/clroni-repl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>Test application for clroni.</Description>
<PackageTags>ONI Open Ephys</PackageTags>
<TargetFramework>net472</TargetFramework>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright © Open Ephys, Inc.</Copyright>
<Authors>Jon Newman</Authors>
Expand Down

0 comments on commit e1b0916

Please sign in to comment.