From 64d92fdfce0f5f81635996bc756b3c6486f3cfd5 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 27 Aug 2020 13:09:28 -0600 Subject: [PATCH] adds extra event handler --- .../Chassis/DmChassisController.cs | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs index d6b6e60c..0a16290f 100644 --- a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs +++ b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs @@ -877,16 +877,15 @@ namespace PepperDash.Essentials.DM Debug.Console(1, this, "No index of {0} found in InputCardHdcpCapabilityFeedbacks"); break; } - // This case may be redundant as the case above should fire when HdcpSupport changes to on or off - //case DMInputEventIds.HdcpSupportOnEventId: - // { - // Debug.Console(2, this, "DM Input {0} HdcpSupportOnEventId", args.Number); - // if (InputCardHdcpStateFeedbacks[args.Number] != null) - // InputCardHdcpStateFeedbacks[args.Number].FireUpdate(); - // else - // Debug.Console(1, this, "No index of {0} found in InputCardHdcpCapabilityFeedbacks"); - // break; - // } + case DMInputEventIds.HdcpSupportOnEventId: + { + Debug.Console(2, this, "DM Input {0} HdcpSupportOnEventId", args.Number); + if (InputCardHdcpStateFeedbacks[args.Number] != null) + InputCardHdcpStateFeedbacks[args.Number].FireUpdate(); + else + Debug.Console(1, this, "No index of {0} found in InputCardHdcpCapabilityFeedbacks"); + break; + } default: { Debug.Console(2, this, "DMInputChange fired for Input {0} with Unhandled EventId: {1}", args.Number, args.EventId);