aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/UWF
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-26 02:33:23 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-26 02:33:23 +0200
commita819f0763680f27bdff8f0cbccdcd4c13d6a2fdb (patch)
treeb9c9e8f99ee170c9da9df7b68364b8837bb3d7a7 /Software/Visual_Studio/PPC/Tango.PPC.Common/UWF
parent53108c7036fe65232f39ee1d0dae0b9757ce99ff (diff)
downloadTango-a819f0763680f27bdff8f0cbccdcd4c13d6a2fdb.tar.gz
Tango-a819f0763680f27bdff8f0cbccdcd4c13d6a2fdb.zip
Fixed issue with IsEnabled on UWF manager.
Fixed issue on TI calc min vol threshold.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/UWF')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/UWF/AlternativeUnifiedWriteFilterManager.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/UWF/AlternativeUnifiedWriteFilterManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/UWF/AlternativeUnifiedWriteFilterManager.cs
index c95cdb376..ea57ca0d8 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/UWF/AlternativeUnifiedWriteFilterManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/UWF/AlternativeUnifiedWriteFilterManager.cs
@@ -75,6 +75,7 @@ namespace Tango.PPC.Common.UWF
LogManager.Log($"Getting UWF status using pattern '{pattern}'...");
CmdCommand command = new CmdCommand(UWF_PATH, $"get-config");
+ command.ExitStrategy = CmdCommand.ExitStrategies.StandardOutput;
command.OutputEncoding = CmdCommand.OutEncoding.Unicode;
var result = await command.Run();