Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions GCSViews/ConfigurationView/ConfigPlanner.Designer.cs

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

6 changes: 6 additions & 0 deletions GCSViews/ConfigurationView/ConfigPlanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ public void Activate()
// setup other config state
SetCheckboxFromConfig("CHK_resetapmonconnect", CHK_resetapmonconnect);
SetCheckboxFromConfig("CHK_rtsresetesp32", CHK_rtsresetesp32);
SetCheckboxFromConfig("CHK_Joystick_AutoEnable", CHK_joystickautoenable);

CMB_rateattitude.Text = MainV2.comPort.MAV.cs.rateattitude.ToString();
CMB_rateposition.Text = MainV2.comPort.MAV.cs.rateposition.ToString();
Expand Down Expand Up @@ -1190,5 +1191,10 @@ private void BUT_mapCacheDir_Click(object sender, EventArgs e)
{
}
}

private void CHK_joystickautoenable_CheckedChanged(object sender, EventArgs e)
{
Settings.Instance["CHK_Joystick_AutoEnable"] = CHK_joystickautoenable.Checked.ToString();
}
}
}
Loading