Skip to content

Commit

Permalink
fix: fix USB Follow Video
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Payne committed Jan 27, 2023
1 parent a0bfc6e commit 89f371b
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 254 deletions.
3 changes: 3 additions & 0 deletions src/NvxEpi/Devices/Nvx35x.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Crestron.SimplSharpPro.DeviceSupport;
using Crestron.SimplSharpPro.DM;
using Crestron.SimplSharpPro.DM.Streaming;
using Newtonsoft.Json;
using NvxEpi.Abstractions;
using NvxEpi.Abstractions.HdmiInput;
using NvxEpi.Abstractions.HdmiOutput;
Expand Down Expand Up @@ -55,6 +56,8 @@ public override bool CustomActivate()

Hardware = hardware;
var result = base.CustomActivate();
//if (Debug.Level >= 0)
// Debug.Console(0, this, "{0}", JsonConvert.SerializeObject(_config, Formatting.Indented));

_usbStream = UsbStream.GetUsbStream(this, _config.Usb);
_hdmiInput = new HdmiInput2(this);
Expand Down
1 change: 1 addition & 0 deletions src/NvxEpi/Features/Config/NvxDeviceProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ public class NvxUsbProperties
public string Mode { get; set; }
public string Default { get; set; }
public bool FollowVideo { get; set; }
public bool IsLayer3 { get; set; }
}
}
Loading

0 comments on commit 89f371b

Please sign in to comment.