From 720a7cbbaa26a3237201a8db19b6722eb62fc714 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 22 May 2017 12:43:20 +0200 Subject: [PATCH] fix evento x invDDone... --- MTC_Adapter/MTC_Adapter/AdapterGeneric.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MTC_Adapter/MTC_Adapter/AdapterGeneric.cs b/MTC_Adapter/MTC_Adapter/AdapterGeneric.cs index 6088b38..4063a6a 100644 --- a/MTC_Adapter/MTC_Adapter/AdapterGeneric.cs +++ b/MTC_Adapter/MTC_Adapter/AdapterGeneric.cs @@ -534,7 +534,7 @@ namespace MTC_Adapter /// /// numero di inversioni di direzione fatte nell'intervallo di tempo /// - public Sample mAxInvDDone; + public Event mAxInvDDone; /// /// Allarmi CNC del PATH /// @@ -588,7 +588,7 @@ namespace MTC_Adapter mAxAccTime = new Sample(string.Format("{0}_AccTime", ident)); mAxBattery = new Sample(string.Format("{0}_Battery", ident)); mAxDistDone = new Sample(string.Format("{0}_DistDone", ident)); - mAxInvDDone = new Sample(string.Format("{0}_InvDDone", ident)); + mAxInvDDone = new Event(string.Format("{0}_InvDDone", ident)); mAxAlarmCNC = new Condition(string.Format("{0}_AlarmCNC", ident)); mAxAlarmPLC = new Condition(string.Format("{0}_AlarmPLC", ident));