Skip to content

Commit

Permalink
Merge pull request #32 from qualisys/rt_protocol_1.25
Browse files Browse the repository at this point in the history
Update to RT protocol version 1.25
  • Loading branch information
daoo authored Jun 5, 2024
2 parents 7f40766 + f0faa04 commit e573321
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion QTMSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,8 @@ public enum CameraModel
ModelArqusA12,
[XmlEnum("Arqus A26")]
ModelArqusA26,
[XmlEnum("Miqus Video Color Plus")]
ModelMiqusVideoColorPlus,
}

/// <summary>Camera modes</summary>
Expand Down Expand Up @@ -1538,8 +1540,10 @@ public enum SettingsVideoResolution
{
[XmlEnum("Unknown SettingsVideoResolution")]
Unknown = -1,
[XmlEnum("1440p")]
VideoResolution_1440p = 0,
[XmlEnum("1080p")]
VideoResolution_1080p = 0,
VideoResolution_1080p,
[XmlEnum("720p")]
VideoResolution_720p,
[XmlEnum("540p")]
Expand Down
2 changes: 1 addition & 1 deletion RTProtocol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static class Constants
/// <summary>Latest major version of protocol</summary>
public const int MAJOR_VERSION = 1;
/// <summary>Latest minor version of protocol</summary>
public const int MINOR_VERSION = 24;
public const int MINOR_VERSION = 25;
/// <summary>Maximum camera count</summary>
public const int MAX_CAMERA_COUNT = 256;
/// <summary>Maximum Analog device count</summary>
Expand Down

0 comments on commit e573321

Please sign in to comment.