Skip to content

Commit

Permalink
Snapshot - Many cosmetic and some functional UI usability changes. No…
Browse files Browse the repository at this point in the history
…t done.
  • Loading branch information
Apoplectic1 committed Jul 11, 2023
1 parent 735df26 commit d1aa7d2
Show file tree
Hide file tree
Showing 7 changed files with 924 additions and 859 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/RFEOnSite/v17/.suo
Binary file not shown.
1,505 changes: 783 additions & 722 deletions RFEOnSite/Forms/Main Form/ApplicationMainForm.Designer.cs

Large diffs are not rendered by default.

266 changes: 138 additions & 128 deletions RFEOnSite/Forms/Main Form/ApplicationMainForm.cs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions RFEOnSite/Forms/Main Form/ApplicationMainForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="CheckBoxRadialAzimuth.ToolTip" xml:space="preserve">
<value>When checked, the survey is directional.\n\nA radial survey will use a different (specific) directory structure to store .csv files and uses a different location naming convention than an Omni directional survey.</value>
</data>
Expand Down
9 changes: 0 additions & 9 deletions RFEOnSite/RFEConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ public class RFEConfiguration
public List<double> mFreqencyList;
public List<string> mSweepsFromExplorer;


public double StartMHz { get; private set; }
public double StepMHz { get; private set; }
public double RBWKHz { get; private set; }
Expand All @@ -105,23 +104,19 @@ public RFEConfiguration()
FirmwareVersion = String.Empty;
mFreqencyList = new List<double>();
mSweepsFromExplorer = new List<string>();

mConfigurationState = eConfigState.eInvalid;

}

public bool ParseModelAndVersion(string sLine)
{
mMainModel = (eModel)Convert.ToUInt16(sLine.Substring(6, 3));
mExpansionModel = (eModel)Convert.ToUInt16(sLine.Substring(10, 3));
FirmwareVersion = sLine.Substring(14, 5);

return true;
}
public bool ParseSerialNumber(string sLine)
{
mSerialNumber = sLine.Substring(3, 16);

return true;
}
public bool ParseDSPMode(string sLine)
Expand All @@ -130,7 +125,6 @@ public bool ParseDSPMode(string sLine)
}
public bool ParseConfiguration(string sLine)
{

StartMHz = Convert.ToInt32(sLine.Substring(6, 7)) / 1000.0;
StepMHz = Convert.ToInt32(sLine.Substring(14, 7)) / 1000000.0;
mAmplitudeTopDbm = Convert.ToInt32(sLine.Substring(22, 4));
Expand All @@ -143,10 +137,7 @@ public bool ParseConfiguration(string sLine)
mfMaxSpanMHz = Convert.ToInt32(sLine.Substring(59, 7)) / 1000.0;
RBWKHz = Convert.ToInt32(sLine.Substring(67, 5));
eCalculator = (eCalculator)Convert.ToUInt16(sLine.Substring(73, 3));

mConfigurationState = eConfigState.eExplorerValid;


return true;
}
}
Expand Down

0 comments on commit d1aa7d2

Please sign in to comment.