mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Add register for basic DM endpoints to constructor stage due to requirement they are registered before parent devices.
This commit is contained in:
parent
8cc6cfafe9
commit
cef29af1ba
5 changed files with 11 additions and 1 deletions
|
|
@ -28,6 +28,8 @@ namespace PepperDash.Essentials.DM
|
|||
|
||||
InputPorts = new RoutingPortCollection<RoutingInputPort> {DmIn};
|
||||
OutputPorts = new RoutingPortCollection<RoutingOutputPort> {HDBaseTSink};
|
||||
PreventRegistration = true;
|
||||
rmc.Register();
|
||||
}
|
||||
|
||||
public override void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge)
|
||||
|
|
|
|||
|
|
@ -32,7 +32,9 @@ namespace PepperDash.Essentials.DM
|
|||
eRoutingPortConnectionType.Hdmi, null, this) {Port = _rmc};
|
||||
|
||||
InputPorts = new RoutingPortCollection<RoutingInputPort> {DmIn};
|
||||
OutputPorts = new RoutingPortCollection<RoutingOutputPort> {HdmiOut};
|
||||
OutputPorts = new RoutingPortCollection<RoutingOutputPort> {HdmiOut};
|
||||
PreventRegistration = true;
|
||||
rmc.Register();
|
||||
}
|
||||
|
||||
public override void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue