Skip to content

Commit

Permalink
Signed-off-by: matt <[email protected]>
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantAsylum committed Feb 20, 2021
1 parent 69c2dcb commit 08b91f3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Tractor/Com.QuantAsylum.Tractor.TestManagers/QA401.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,12 @@ public void SetInputRange(int attenLevel_dB)

public void SetOffsets(double inputOffset, double outputOffset)
{
Qa401.SetOffsets(inputOffset, outputOffset);
Qa401.SetOffsets(inputOffset, outputOffset);
}

public void DoFrAquisition(float ampLevel_Dbv, double windowSec, int smoothingDenominator)
{
Qa401.RemotingRunSingleFrExpoChirp(ampLevel_Dbv, windowSec, smoothingDenominator);
Qa401.RemotingRunSingleFrExpoChirp(ampLevel_Dbv, false, windowSec, smoothingDenominator);

while (AnalyzerIsBusy())
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public FreqResponseA01() : base()
{
Name = this.GetType().Name;
_TestType = TestTypeEnum.LevelGain;
FftSize = 32; // Override and set 32K as default
}

public override void DoTest(string title, out TestResult tr)
Expand Down Expand Up @@ -82,7 +83,7 @@ public override string GetTestLimits()

public override string GetTestDescription()
{
return "Measures the frequency response using a chirp and compares to a mask. NOTE: FFT should be >32768.";
return "Measures the frequency response using a chirp and compares to a mask. NOTE: FFT should be >=32768.";
}

internal override int HardwareMask
Expand Down
4 changes: 2 additions & 2 deletions Tractor/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ namespace Tractor
static class Constants
{
public static string TitleBarText = "QuantAsylum TRACTOR";
public static readonly double Version = 1.000;
public static readonly double Version = 1.01;
public static string VersionSuffix = "";

public static double RequiredWebserviceVersion = 0.5;
public static double RequiredQa401Version = 1.908;
public static double RequiredQa401Version = 1.923;
public static double RequiredQa450Version = 1.21;
public static double RequiredQa351Version = 1.033;

Expand Down
6 changes: 3 additions & 3 deletions Tractor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Tractor")]
[assembly: AssemblyCopyright("Copyright QuantAsylum © 2020")]
[assembly: AssemblyCopyright("Copyright QuantAsylum © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.9.7")]
[assembly: AssemblyFileVersion("0.9.9.7")]
[assembly: AssemblyVersion("0.1.0.1")]
[assembly: AssemblyFileVersion("0.1.0.1")]
7 changes: 6 additions & 1 deletion Tractor/Releases.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
1.0
1.01
- Default FFT size for FreqResponseA01 to 32K (change min required QA401 version to 1.916 to ensure this is avoided)

1.001
- Fixed issue related to RemotingRunSingleFrExpoChirp. In previous QA401 release the number of args was changed, but that wasn't updated in Tractor
1.0
- Operator Dlg Prompt window made always on top
- Added QA351 voltage test

Expand Down

0 comments on commit 08b91f3

Please sign in to comment.