mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Tested DmChassisController over EiscApi bridge. So far, no issues found
This commit is contained in:
parent
339a4f8a62
commit
f2bfeda074
2 changed files with 12 additions and 7 deletions
|
|
@ -22,6 +22,8 @@ namespace PepperDash.Essentials.Bridges
|
||||||
|
|
||||||
joinMap.OffsetJoinNumbers(joinStart);
|
joinMap.OffsetJoinNumbers(joinStart);
|
||||||
|
|
||||||
|
Debug.Console(1, dmChassis, "Linking device '{0}' to Trilist '{1}'", dmChassis.Key, trilist.ID);
|
||||||
|
|
||||||
dmChassis.IsOnline.LinkInputSig(trilist.BooleanInput[joinMap.IsOnline]);
|
dmChassis.IsOnline.LinkInputSig(trilist.BooleanInput[joinMap.IsOnline]);
|
||||||
|
|
||||||
// Link up outputs
|
// Link up outputs
|
||||||
|
|
@ -61,8 +63,9 @@ namespace PepperDash.Essentials.Bridges
|
||||||
public uint OutputCurrentVideoInputNames { get; set; }
|
public uint OutputCurrentVideoInputNames { get; set; }
|
||||||
public uint OutputCurrentAudioInputNames { get; set; }
|
public uint OutputCurrentAudioInputNames { get; set; }
|
||||||
public uint InputCurrentResolution { get; set; }
|
public uint InputCurrentResolution { get; set; }
|
||||||
public uint HdcpSupport { get; set; }
|
public uint InputSlotOnline { get; set; }
|
||||||
public uint HdcpSupportCapability { get; set; }
|
//public uint HdcpSupport { get; set; }
|
||||||
|
//public uint HdcpSupportCapability { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public DmChassisControllerJoinMap()
|
public DmChassisControllerJoinMap()
|
||||||
|
|
@ -76,8 +79,9 @@ namespace PepperDash.Essentials.Bridges
|
||||||
OutputCurrentVideoInputNames = 2000; //2001-2199
|
OutputCurrentVideoInputNames = 2000; //2001-2199
|
||||||
OutputCurrentAudioInputNames = 2200; //2201-2399
|
OutputCurrentAudioInputNames = 2200; //2201-2399
|
||||||
InputCurrentResolution = 2400; // 2401-2599
|
InputCurrentResolution = 2400; // 2401-2599
|
||||||
HdcpSupport = 1000; //1001-1199
|
InputSlotOnline = 500;
|
||||||
HdcpSupportCapability = 1200; //1201-1399
|
//HdcpSupport = 1000; //1001-1199
|
||||||
|
//HdcpSupportCapability = 1200; //1201-1399
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -94,8 +98,9 @@ namespace PepperDash.Essentials.Bridges
|
||||||
OutputCurrentVideoInputNames = OutputCurrentVideoInputNames + joinOffset;
|
OutputCurrentVideoInputNames = OutputCurrentVideoInputNames + joinOffset;
|
||||||
OutputCurrentAudioInputNames = OutputCurrentAudioInputNames + joinOffset;
|
OutputCurrentAudioInputNames = OutputCurrentAudioInputNames + joinOffset;
|
||||||
InputCurrentResolution = InputCurrentResolution + joinOffset;
|
InputCurrentResolution = InputCurrentResolution + joinOffset;
|
||||||
HdcpSupport = HdcpSupport + joinOffset;
|
InputSlotOnline = InputSlotOnline + joinOffset;
|
||||||
HdcpSupportCapability = HdcpSupportCapability + joinOffset;
|
//HdcpSupport = HdcpSupport + joinOffset;
|
||||||
|
//HdcpSupportCapability = HdcpSupportCapability + joinOffset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit dbb52a5428d1cbdd96af7ede9e1d81d3faa52206
|
Subproject commit 25af9c91a18fef1b0c287e4fcdfda4200cb24688
|
||||||
Loading…
Add table
Add a link
Reference in a new issue