aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-07 22:54:09 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-07 22:54:09 +0200
commit5257bfef6cf9fc4896fe417233e7535401c4e5e1 (patch)
tree7b64247434a55ad07b79c9efb521f76b576f59eb /Software/Visual_Studio
parent42370757e73c70495384922615279817e1592e39 (diff)
parent9f81ed49d313941207169fb99eff07452e143e28 (diff)
downloadTango-5257bfef6cf9fc4896fe417233e7535401c4e5e1.tar.gz
Tango-5257bfef6cf9fc4896fe417233e7535401c4e5e1.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.AlarmParametersGenerator/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.AlarmParametersGenerator/Program.cs b/Software/Visual_Studio/Utilities/Tango.AlarmParametersGenerator/Program.cs
index a18befe34..2972b4892 100644
--- a/Software/Visual_Studio/Utilities/Tango.AlarmParametersGenerator/Program.cs
+++ b/Software/Visual_Studio/Utilities/Tango.AlarmParametersGenerator/Program.cs
@@ -94,13 +94,13 @@ namespace Tango.AlarmParametersGenerator
AlarmHandlingItem alarm = new AlarmHandlingItem();
alarm.AlarmSource = item.Source.ToEnum<AlarmSourceType>();
- alarm.Frequency = item.Frequency.ToUint();
+ //alarm.Frequency = item.Frequency.ToUint();
alarm.DeviceId = item.DeviceId.ToUint();
alarm.ModuleDeviceId = item.ApplicationDeviceID.ToUint();
alarm.AlarmValue = item.Criteria.ToUint();
alarm.AlarmDirection = item.Direction.ToBoolean();
alarm.Severity = item.Severity.ToEnum<DebugLogCategory>();
- alarm.Predecessor = item.Predeccesor.ToUint();
+ //alarm.Predecessor = item.Predeccesor.ToUint();
alarm.DebounceValue = item.DebounceValue.ToUint();
alarm.EventType = (EventType)item.Code.ToUint();
alarm.IsPersistent = item.Persistent.ToBooleanYesNo();