From 267159e0a98a33aba10c4c3bfb47a06a5b0fd741 Mon Sep 17 00:00:00 2001 From: Marek Frniak Date: Mon, 24 Aug 2026 09:23:18 +0200 Subject: [PATCH] : RefPulses carry-over by restoring testInProgress behavior in StandingStart, increase revision to 3.9.3134.113 Cause: 1. Background: there was a suspicion that the Bukoven board left RefPulses active across operations; this was investigated and ruled out. The pulse counter is reset by testInProgress when an operation is reused. During the third DataEntry window testInProgress had been temporarily disabled (SLM vs Karlsruhe difference), which allowed RefPulses to appear to persist. 2. Increase revision to 3.9.3134.113 Solution: 1. Restore/ensure testInProgress behavior during the DataEntry sequence and explicitly reset the pulse counter when starting a new operation. 2. Increased revision to 3.9.3134.113 --- TBF/Properties/AssemblyInfo.cs | 4 ++-- TBF/Rig/TestMethods/StandingStart/StandingStartSeq.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TBF/Properties/AssemblyInfo.cs b/TBF/Properties/AssemblyInfo.cs index 7fd036103..60f2adf94 100644 --- a/TBF/Properties/AssemblyInfo.cs +++ b/TBF/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("3.9.3134.112")] -[assembly: AssemblyFileVersion("3.9.3134.112")] +[assembly: AssemblyVersion("3.9.3134.113")] +[assembly: AssemblyFileVersion("3.9.3134.113")] diff --git a/TBF/Rig/TestMethods/StandingStart/StandingStartSeq.cs b/TBF/Rig/TestMethods/StandingStart/StandingStartSeq.cs index 6f4636d3a..439f94213 100644 --- a/TBF/Rig/TestMethods/StandingStart/StandingStartSeq.cs +++ b/TBF/Rig/TestMethods/StandingStart/StandingStartSeq.cs @@ -693,7 +693,7 @@ namespace TBF.Rig.TestMethods.StandingStart State.Create(string.Format("{0}({1}) : Closing the start/stop valve at the end of the standing start/stop test", test.Method, test.Name)) .AddOperation(checkUiOp) .AddOperations(readTempPressOps) - .AddOperation(testInProgress) + //.AddOperation(testInProgress) .AddOperation(cBrd.CloseStartValveOp(timeStampEnd, stopSwitchTime)) .AddOperation(processDataLoggingOp) .EnterState();