Skip to content

Commit

Permalink
Merge pull request #230 from farmerbriantee/Help
Browse files Browse the repository at this point in the history
Help
  • Loading branch information
farmerbriantee authored Dec 6, 2021
2 parents 76a5123 + 14fe24c commit 8d76dc9
Show file tree
Hide file tree
Showing 19 changed files with 214 additions and 105 deletions.
2 changes: 1 addition & 1 deletion SourceCode/AgDiag/Source/Forms/SerialComm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions SourceCode/AgIO/Source/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
<setting name="setRadio_isOn" serializeAs="String">
<value>False</value>
</setting>
<setting name="setRadio_Channels" serializeAs="String">
<value />
<setting name="setUDP_isSendNMEAToUDP" serializeAs="String">
<value>False</value>
</setting>
</AgIO.Properties.Settings>
</userSettings>
Expand Down
4 changes: 3 additions & 1 deletion SourceCode/AgIO/Source/Forms/FormLoop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public FormLoop()

public bool isKeyboardOn = true;

public bool isGPSSentencesOn = false;
public bool isGPSSentencesOn = false, isSendNMEAToUDP;

public double secondsSinceStart, lastSecond;

Expand All @@ -47,6 +47,8 @@ private void FormLoop_Load(object sender, EventArgs e)
if (Settings.Default.setUDP_isOn) LoadUDPNetwork();
LoadLoopback();

isSendNMEAToUDP = Properties.Settings.Default.setUDP_isSendNMEAToUDP;

lblGPS1Comm.Text = "---";
lblIMUComm.Text = "---";
lblMod1Comm.Text = "---";
Expand Down
43 changes: 39 additions & 4 deletions SourceCode/AgIO/Source/Forms/FormUDP.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions SourceCode/AgIO/Source/Forms/FormUDP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ private void btnSerialOK_Click(object sender, EventArgs e)
//Properties.Settings.Default.setIP_rateMachinePort = (int)nudRateMachinePort.Value;

Properties.Settings.Default.setUDP_isOn = cboxIsUDPOn.Checked;
Properties.Settings.Default.setUDP_isSendNMEAToUDP = cboxIsSendNMEAToUDP.Checked;

Properties.Settings.Default.Save();

Expand All @@ -67,6 +68,7 @@ private void FormUDp_Load(object sender, EventArgs e)
//nudRateMachinePort.Value = Properties.Settings.Default.setIP_rateMachinePort;

cboxIsUDPOn.Checked = Properties.Settings.Default.setUDP_isOn;
cboxIsSendNMEAToUDP.Checked = Properties.Settings.Default.setUDP_isSendNMEAToUDP;
}

//get the ipv4 address only
Expand Down
5 changes: 5 additions & 0 deletions SourceCode/AgIO/Source/Forms/NMEA.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion SourceCode/AgIO/Source/Forms/UDP.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions SourceCode/AgIO/Source/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion SourceCode/AgIO/Source/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,11 @@
<Setting Name="setRadio_isOn" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="setRadio_Channels" Type="System.String" Scope="User">
<Setting Name="setRadio_Channels" Type="System.Collections.Generic.List&lt;AgIO.CRadioChannel&gt;" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="setUDP_isSendNMEAToUDP" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>
1 change: 1 addition & 0 deletions SourceCode/GPS/AgOpenGPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@
<ItemGroup>
<Content Include="AOG.ico" />
<Content Include="aChangeLog.txt" />
<None Include="btnImages\QR\AgOpenYouTubeChannel.jpg" />
<None Include="btnImages\OpManual.png" />
<None Include="btnImages\VideoLink.png" />
<None Include="btnImages\HelpCancel.png" />
Expand Down
6 changes: 5 additions & 1 deletion SourceCode/GPS/Forms/Controls.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 27 additions & 13 deletions SourceCode/GPS/Forms/Form_Help.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SourceCode/GPS/Forms/Settings/ConfigHelp.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions SourceCode/GPS/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8d76dc9

Please sign in to comment.