diff --git a/TestBenchFramework/BenchControl/MettlerToledo/Multi/TaringOp.cs b/TestBenchFramework/BenchControl/MettlerToledo/Multi/TaringOp.cs index bd574dbf8..64f0aa1d8 100644 --- a/TestBenchFramework/BenchControl/MettlerToledo/Multi/TaringOp.cs +++ b/TestBenchFramework/BenchControl/MettlerToledo/Multi/TaringOp.cs @@ -37,7 +37,8 @@ namespace TBF.BenchControl.MettlerToledo.Multi /// Start this operation public void Start() { - done = false; + tara.Val = 0.0f; // Don't do anything, tara = 0 + done = true; } /// Run this operation diff --git a/TestBenchFramework/BenchControl/TestMethods/FlyingStartCollectionMethod/FlyingStartCollectionMethodSeq.cs b/TestBenchFramework/BenchControl/TestMethods/FlyingStartCollectionMethod/FlyingStartCollectionMethodSeq.cs index 61baaa68f..dcfcb9f43 100644 --- a/TestBenchFramework/BenchControl/TestMethods/FlyingStartCollectionMethod/FlyingStartCollectionMethodSeq.cs +++ b/TestBenchFramework/BenchControl/TestMethods/FlyingStartCollectionMethod/FlyingStartCollectionMethodSeq.cs @@ -230,6 +230,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod tstRslt.TimeStart = DateTime.Now; tstRslt.MassStartRaw = startMass.Val; + log.WarnFormat("Start mass = {0}kg", startMass); mass.Val = startMass.Val; //------------------------------------------------ @@ -362,7 +363,8 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod } while (!e.Contains(Event.BalanceDone)); /// - tstRslt.MassEndRaw = endMass.Val; + log.WarnFormat("End mass = {0}kg", endMass); + tstRslt.MassEndRaw = endMass.Val; tstRslt.TimeEnd = DateTime.Now; //------------------------------------------------ diff --git a/TestBenchFramework/Properties/AssemblyInfo.cs b/TestBenchFramework/Properties/AssemblyInfo.cs index a78be44b9..c7f2fe7ce 100644 --- a/TestBenchFramework/Properties/AssemblyInfo.cs +++ b/TestBenchFramework/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.3.30.1")] -[assembly: AssemblyFileVersion("1.3.30.1")] +[assembly: AssemblyVersion("1.3.31.1")] +[assembly: AssemblyFileVersion("1.3.31.1")]