diff --git a/Essentials Core/PepperDashEssentialsBase/PepperDash_Essentials_Core.projectinfo b/Essentials Core/PepperDashEssentialsBase/PepperDash_Essentials_Core.projectinfo index 055fcd97..8a6cc2b2 100644 Binary files a/Essentials Core/PepperDashEssentialsBase/PepperDash_Essentials_Core.projectinfo and b/Essentials Core/PepperDashEssentialsBase/PepperDash_Essentials_Core.projectinfo differ diff --git a/Essentials DM/Essentials_DM/Essentials_DM.projectinfo b/Essentials DM/Essentials_DM/Essentials_DM.projectinfo index 17eff8be..1073cf8c 100644 Binary files a/Essentials DM/Essentials_DM/Essentials_DM.projectinfo and b/Essentials DM/Essentials_DM/Essentials_DM.projectinfo differ diff --git a/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs b/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs index e2cc6c27..325dbfd9 100644 --- a/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs +++ b/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs @@ -290,7 +290,7 @@ namespace PepperDash.Essentials.Devices.Common.DSP public void EnqueueCommand(QueuedCommand commandToEnqueue) { CommandQueue.Enqueue(commandToEnqueue); - Debug.Console(1, this, "Command (QueuedCommand) Enqueued '{0}'. CommandQueue has '{1}' Elements.", commandToEnqueue.Command, CommandQueue.Count); + //Debug.Console(1, this, "Command (QueuedCommand) Enqueued '{0}'. CommandQueue has '{1}' Elements.", commandToEnqueue.Command, CommandQueue.Count); if(!CommandQueueInProgress) SendNextQueuedCommand(); @@ -303,7 +303,7 @@ namespace PepperDash.Essentials.Devices.Common.DSP public void EnqueueCommand(string command) { CommandQueue.Enqueue(command); - Debug.Console(1, this, "Command (string) Enqueued '{0}'. CommandQueue has '{1}' Elements.", command, CommandQueue.Count); + //Debug.Console(1, this, "Command (string) Enqueued '{0}'. CommandQueue has '{1}' Elements.", command, CommandQueue.Count); if (!CommandQueueInProgress) SendNextQueuedCommand(); @@ -314,25 +314,25 @@ namespace PepperDash.Essentials.Devices.Common.DSP /// void SendNextQueuedCommand() { - Debug.Console(2, this, "Attempting to send next queued command. CommandQueueInProgress: {0} Communication isConnected: {1}", CommandQueueInProgress, Communication.IsConnected); + //Debug.Console(2, this, "Attempting to send next queued command. CommandQueueInProgress: {0} Communication isConnected: {1}", CommandQueueInProgress, Communication.IsConnected); //if (CommandQueue.IsEmpty) // CommandQueueInProgress = false; Debug.Console(1, this, "CommandQueue has {0} Elements:\n", CommandQueue.Count); - foreach (object o in CommandQueue) - { - if (o is string) - Debug.Console(1, this, "{0}", o); - else if(o is QueuedCommand) - { - var item = (QueuedCommand)o; - Debug.Console(1, this, "{0}", item.Command); - } - } + //foreach (object o in CommandQueue) + //{ + // if (o is string) + // Debug.Console(1, this, "{0}", o); + // else if(o is QueuedCommand) + // { + // var item = (QueuedCommand)o; + // Debug.Console(1, this, "{0}", item.Command); + // } + //} - Debug.Console(1, this, "End of CommandQueue"); + //Debug.Console(1, this, "End of CommandQueue"); if (Communication.IsConnected && !CommandQueue.IsEmpty) { diff --git a/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDspLevel.cs b/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDspLevel.cs index 8ddbac0e..c9828e49 100644 --- a/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDspLevel.cs +++ b/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDspLevel.cs @@ -220,7 +220,7 @@ namespace PepperDash.Essentials.Devices.Common.DSP string value = match.Groups[1].Value; - //Debug.Console(1, this, "{0} is {1}", attributeCode, value); + Debug.Console(1, this, "Response: '{0}' Value: '{1}'", attributeCode, value); if (message.IndexOf("\"value\":") > -1) { @@ -238,7 +238,7 @@ namespace PepperDash.Essentials.Devices.Common.DSP { MaxLevel = Double.Parse(value); - Debug.Console(1, this, "MaxLevel is '{0}'", MinLevel); + Debug.Console(1, this, "MaxLevel is '{0}'", MaxLevel); break; } diff --git a/Essentials Devices Common/Essentials Devices Common/Essentials Devices Common.projectinfo b/Essentials Devices Common/Essentials Devices Common/Essentials Devices Common.projectinfo index 15fe75a7..bdce5c58 100644 Binary files a/Essentials Devices Common/Essentials Devices Common/Essentials Devices Common.projectinfo and b/Essentials Devices Common/Essentials Devices Common/Essentials Devices Common.projectinfo differ diff --git a/Essentials/PepperDashEssentials/PepperDashEssentials.projectinfo b/Essentials/PepperDashEssentials/PepperDashEssentials.projectinfo index 8496cf17..9559f31d 100644 Binary files a/Essentials/PepperDashEssentials/PepperDashEssentials.projectinfo and b/Essentials/PepperDashEssentials/PepperDashEssentials.projectinfo differ