diff --git a/Tools/ArdupilotMegaPlanner/ArduinoDetect.cs b/Tools/ArdupilotMegaPlanner/ArduinoDetect.cs
index 7b70d4036d..675eb7d885 100644
--- a/Tools/ArdupilotMegaPlanner/ArduinoDetect.cs
+++ b/Tools/ArdupilotMegaPlanner/ArduinoDetect.cs
@@ -56,7 +56,7 @@ namespace ArdupilotMega
System.Threading.Thread.Sleep(500);
//HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\VID_2341&PID_0010\640333439373519060F0\Device Parameters
- if (!MainV2.MAC)
+ if (!MainV2.MONO)
{
ObjectQuery query = new ObjectQuery("SELECT * FROM Win32_USBControllerDevice");
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
@@ -66,7 +66,7 @@ namespace ArdupilotMega
if (obj2["Dependent"].ToString().Contains(@"USB\\VID_2341&PID_0010"))
{
- return "2560-2";
+ //return "2560-2";
}
}
}
diff --git a/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj b/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj
index 1dcf908aa2..54daa67bad 100644
--- a/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj
+++ b/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj
@@ -10,7 +10,7 @@
Properties
ArdupilotMega
ArdupilotMegaPlanner
- v3.5
+ v4.0
512
@@ -57,7 +57,7 @@
full
true
bin\Release\
- DEBUG;TRACE;MAVLINK10cra
+ TRACE;DEBUG;MAVLINK10cra
prompt
4
false
@@ -92,7 +92,7 @@
- mykey.pfx
+ mykey.snk
@@ -134,6 +134,17 @@
..\..\..\..\..\Desktop\DIYDrones\SrcSamples\bin\ICSharpCode.SharpZipLib.dll
+
+ False
+ ..\..\..\..\..\..\..\Program Files (x86)\IronPython 2.7.1\IronPython.dll
+ True
+ False
+
+
+ False
+ ..\..\..\..\..\..\..\Program Files (x86)\IronPython 2.7.1\IronPython.Modules.dll
+ True
+
..\..\..\..\..\Desktop\DIYDrones\kml-library\KmlTestbed\bin\Release\KMLib.dll
@@ -147,6 +158,16 @@
..\..\..\..\..\..\..\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Microsoft.DirectX.DirectInput.dll
False
+
+ False
+ ..\..\..\..\..\..\..\Program Files (x86)\IronPython 2.7.1\Microsoft.Dynamic.dll
+ True
+
+
+ False
+ ..\..\..\..\..\..\..\Program Files (x86)\IronPython 2.7.1\Microsoft.Scripting.dll
+ True
+
False
..\..\..\..\..\Desktop\DIYDrones\opentk\trunk\Binaries\OpenTK\Release\OpenTK.dll
@@ -203,6 +224,7 @@
+
Form
@@ -329,6 +351,7 @@
+
Form
@@ -523,7 +546,7 @@
-
+
@@ -621,7 +644,6 @@
-
rem macos.bat
diff --git a/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj.user b/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj.user
index 08b4166df5..8317d5613c 100644
--- a/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj.user
+++ b/Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj.user
@@ -10,4 +10,7 @@
+
+ C:\Users\hog\Documents\Visual Studio 2010\Projects\ArdupilotMega\ArdupilotMega\bin\Release\
+
\ No newline at end of file
diff --git a/Tools/ArdupilotMegaPlanner/Common.cs b/Tools/ArdupilotMegaPlanner/Common.cs
index c4d16bbab8..8823c2ea03 100644
--- a/Tools/ArdupilotMegaPlanner/Common.cs
+++ b/Tools/ArdupilotMegaPlanner/Common.cs
@@ -140,6 +140,9 @@ namespace ArdupilotMega
public class GMapMarkerQuad : GMapMarker
{
+ const float rad2deg = (float)(180 / Math.PI);
+ const float deg2rad = (float)(1.0 / rad2deg);
+
static readonly System.Drawing.Size SizeSt = new System.Drawing.Size(global::ArdupilotMega.Properties.Resources.quad2.Width, global::ArdupilotMega.Properties.Resources.quad2.Height);
float heading = 0;
float cog = -1;
@@ -158,8 +161,17 @@ namespace ArdupilotMega
{
Matrix temp = g.Transform;
g.TranslateTransform(LocalPosition.X, LocalPosition.Y);
+
+ int length = 500;
+
+ g.DrawLine(new Pen(Color.Red, 2), 0.0f, 0.0f, (float)Math.Cos((heading - 90) * deg2rad) * length, (float)Math.Sin((heading - 90) * deg2rad) * length);
+ //g.DrawLine(new Pen(Color.Green, 2), 0.0f, 0.0f, (float)Math.Cos((nav_bearing - 90) * deg2rad) * length, (float)Math.Sin((nav_bearing - 90) * deg2rad) * length);
+ g.DrawLine(new Pen(Color.Black, 2), 0.0f, 0.0f, (float)Math.Cos((cog - 90) * deg2rad) * length, (float)Math.Sin((cog - 90) * deg2rad) * length);
+ g.DrawLine(new Pen(Color.Orange, 2), 0.0f, 0.0f, (float)Math.Cos((target - 90) * deg2rad) * length, (float)Math.Sin((target - 90) * deg2rad) * length);
+
+
g.RotateTransform(heading);
- g.DrawImageUnscaled(global::ArdupilotMega.Properties.Resources.quad2, global::ArdupilotMega.Properties.Resources.quad2.Width / -2, global::ArdupilotMega.Properties.Resources.quad2.Height / -2);
+ g.DrawImageUnscaled(global::ArdupilotMega.Properties.Resources.quad2, global::ArdupilotMega.Properties.Resources.quad2.Width / -2 + 2, global::ArdupilotMega.Properties.Resources.quad2.Height / -2);
g.Transform = temp;
}
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
index 5ce6f0e836..890821ed41 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
@@ -141,13 +141,6 @@
this.RLL2SRV_P = new System.Windows.Forms.NumericUpDown();
this.label52 = new System.Windows.Forms.Label();
this.TabAC2 = new System.Windows.Forms.TabPage();
- this.groupBox17 = new System.Windows.Forms.GroupBox();
- this.ACRO_PIT_IMAX = new System.Windows.Forms.NumericUpDown();
- this.label27 = new System.Windows.Forms.Label();
- this.ACRO_PIT_I = new System.Windows.Forms.NumericUpDown();
- this.label29 = new System.Windows.Forms.Label();
- this.ACRO_PIT_P = new System.Windows.Forms.NumericUpDown();
- this.label33 = new System.Windows.Forms.Label();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label14 = new System.Windows.Forms.Label();
this.THR_RATE_IMAX = new System.Windows.Forms.NumericUpDown();
@@ -155,13 +148,6 @@
this.label20 = new System.Windows.Forms.Label();
this.THR_RATE_P = new System.Windows.Forms.NumericUpDown();
this.label25 = new System.Windows.Forms.Label();
- this.groupBox18 = new System.Windows.Forms.GroupBox();
- this.ACRO_RLL_IMAX = new System.Windows.Forms.NumericUpDown();
- this.label40 = new System.Windows.Forms.Label();
- this.ACRO_RLL_I = new System.Windows.Forms.NumericUpDown();
- this.label44 = new System.Windows.Forms.Label();
- this.ACRO_RLL_P = new System.Windows.Forms.NumericUpDown();
- this.label48 = new System.Windows.Forms.Label();
this.CHK_lockrollpitch = new System.Windows.Forms.CheckBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.WP_SPEED_MAX = new System.Windows.Forms.NumericUpDown();
@@ -289,129 +275,58 @@
this.BUT_load = new ArdupilotMega.MyButton();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.BUT_compare = new ArdupilotMega.MyButton();
+ this.groupBox17 = new System.Windows.Forms.GroupBox();
+ this.ACRO_PIT_IMAX = new System.Windows.Forms.NumericUpDown();
+ this.label27 = new System.Windows.Forms.Label();
+ this.ACRO_PIT_I = new System.Windows.Forms.NumericUpDown();
+ this.label29 = new System.Windows.Forms.Label();
+ this.ACRO_PIT_P = new System.Windows.Forms.NumericUpDown();
+ this.label33 = new System.Windows.Forms.Label();
+ this.groupBox18 = new System.Windows.Forms.GroupBox();
+ this.ACRO_RLL_IMAX = new System.Windows.Forms.NumericUpDown();
+ this.label40 = new System.Windows.Forms.Label();
+ this.ACRO_RLL_I = new System.Windows.Forms.NumericUpDown();
+ this.label44 = new System.Windows.Forms.Label();
+ this.ACRO_RLL_P = new System.Windows.Forms.NumericUpDown();
+ this.label48 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.Params)).BeginInit();
this.ConfigTabs.SuspendLayout();
this.TabAPM2.SuspendLayout();
this.groupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.THR_FS_VALUE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_MIN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.TRIM_THROTTLE)).BeginInit();
this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_RATIO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_FBW_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_FBW_MIN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.TRIM_ARSPD_CM)).BeginInit();
this.groupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.LIM_PITCH_MIN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.LIM_PITCH_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.LIM_ROLL_CD)).BeginInit();
this.groupBox15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_ANGLE_CD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_GAIN_SC)).BeginInit();
this.groupBox16.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.KFF_PTCH2THR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.KFF_RDDRMIX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.KFF_PTCHCOMP)).BeginInit();
this.groupBox14.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_P)).BeginInit();
this.groupBox13.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_P)).BeginInit();
this.groupBox12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_P)).BeginInit();
this.groupBox11.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_P)).BeginInit();
this.groupBox10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_P)).BeginInit();
this.groupBox9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_P)).BeginInit();
this.groupBox8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_D)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_P)).BeginInit();
this.TabAC2.SuspendLayout();
- this.groupBox17.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_P)).BeginInit();
this.groupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_P)).BeginInit();
- this.groupBox18.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_P)).BeginInit();
this.groupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.WP_SPEED_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_P)).BeginInit();
this.groupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_ANGLE_CD1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_P)).BeginInit();
this.groupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_P)).BeginInit();
this.groupBox19.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_P)).BeginInit();
this.groupBox20.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_P)).BeginInit();
this.groupBox21.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_P)).BeginInit();
this.groupBox22.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_P)).BeginInit();
this.groupBox23.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_P)).BeginInit();
this.groupBox24.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_P)).BeginInit();
this.groupBox25.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_IMAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_I)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_P)).BeginInit();
this.TabPlanner.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.NUM_tracklength)).BeginInit();
+ this.groupBox17.SuspendLayout();
+ this.groupBox18.SuspendLayout();
this.SuspendLayout();
//
// Params
//
- resources.ApplyResources(this.Params, "Params");
this.Params.AllowUserToAddRows = false;
this.Params.AllowUserToDeleteRows = false;
+ resources.ApplyResources(this.Params, "Params");
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.Maroon;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -437,7 +352,6 @@
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.Params.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.Params.RowHeadersVisible = false;
- this.toolTip1.SetToolTip(this.Params, resources.GetString("Params.ToolTip"));
this.Params.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.Params_CellValueChanged);
//
// Command
@@ -475,12 +389,10 @@
this.ConfigTabs.Controls.Add(this.TabSetup);
this.ConfigTabs.Name = "ConfigTabs";
this.ConfigTabs.SelectedIndex = 0;
- this.toolTip1.SetToolTip(this.ConfigTabs, resources.GetString("ConfigTabs.ToolTip"));
this.ConfigTabs.SelectedIndexChanged += new System.EventHandler(this.Planner_TabIndexChanged);
//
// TabAPM2
//
- resources.ApplyResources(this.TabAPM2, "TabAPM2");
this.TabAPM2.BackColor = System.Drawing.Color.Transparent;
this.TabAPM2.Controls.Add(this.groupBox3);
this.TabAPM2.Controls.Add(this.groupBox1);
@@ -494,12 +406,11 @@
this.TabAPM2.Controls.Add(this.groupBox10);
this.TabAPM2.Controls.Add(this.groupBox9);
this.TabAPM2.Controls.Add(this.groupBox8);
+ resources.ApplyResources(this.TabAPM2, "TabAPM2");
this.TabAPM2.Name = "TabAPM2";
- this.toolTip1.SetToolTip(this.TabAPM2, resources.GetString("TabAPM2.ToolTip"));
//
// groupBox3
//
- resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Controls.Add(this.THR_FS_VALUE);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.THR_MAX);
@@ -508,61 +419,52 @@
this.groupBox3.Controls.Add(this.label7);
this.groupBox3.Controls.Add(this.TRIM_THROTTLE);
this.groupBox3.Controls.Add(this.label8);
+ resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox3, resources.GetString("groupBox3.ToolTip"));
//
// THR_FS_VALUE
//
resources.ApplyResources(this.THR_FS_VALUE, "THR_FS_VALUE");
this.THR_FS_VALUE.Name = "THR_FS_VALUE";
- this.toolTip1.SetToolTip(this.THR_FS_VALUE, resources.GetString("THR_FS_VALUE.ToolTip"));
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
- this.toolTip1.SetToolTip(this.label5, resources.GetString("label5.ToolTip"));
//
// THR_MAX
//
resources.ApplyResources(this.THR_MAX, "THR_MAX");
this.THR_MAX.Name = "THR_MAX";
- this.toolTip1.SetToolTip(this.THR_MAX, resources.GetString("THR_MAX.ToolTip"));
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
- this.toolTip1.SetToolTip(this.label6, resources.GetString("label6.ToolTip"));
//
// THR_MIN
//
resources.ApplyResources(this.THR_MIN, "THR_MIN");
this.THR_MIN.Name = "THR_MIN";
- this.toolTip1.SetToolTip(this.THR_MIN, resources.GetString("THR_MIN.ToolTip"));
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
- this.toolTip1.SetToolTip(this.label7, resources.GetString("label7.ToolTip"));
//
// TRIM_THROTTLE
//
resources.ApplyResources(this.TRIM_THROTTLE, "TRIM_THROTTLE");
this.TRIM_THROTTLE.Name = "TRIM_THROTTLE";
- this.toolTip1.SetToolTip(this.TRIM_THROTTLE, resources.GetString("TRIM_THROTTLE.ToolTip"));
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
- this.toolTip1.SetToolTip(this.label8, resources.GetString("label8.ToolTip"));
//
// groupBox1
//
- resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.ARSPD_RATIO);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.ARSPD_FBW_MAX);
@@ -571,194 +473,166 @@
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.TRIM_ARSPD_CM);
this.groupBox1.Controls.Add(this.label4);
+ resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip"));
//
// ARSPD_RATIO
//
resources.ApplyResources(this.ARSPD_RATIO, "ARSPD_RATIO");
this.ARSPD_RATIO.Name = "ARSPD_RATIO";
- this.toolTip1.SetToolTip(this.ARSPD_RATIO, resources.GetString("ARSPD_RATIO.ToolTip"));
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
- this.toolTip1.SetToolTip(this.label1, resources.GetString("label1.ToolTip"));
//
// ARSPD_FBW_MAX
//
resources.ApplyResources(this.ARSPD_FBW_MAX, "ARSPD_FBW_MAX");
this.ARSPD_FBW_MAX.Name = "ARSPD_FBW_MAX";
- this.toolTip1.SetToolTip(this.ARSPD_FBW_MAX, resources.GetString("ARSPD_FBW_MAX.ToolTip"));
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
- this.toolTip1.SetToolTip(this.label2, resources.GetString("label2.ToolTip"));
//
// ARSPD_FBW_MIN
//
resources.ApplyResources(this.ARSPD_FBW_MIN, "ARSPD_FBW_MIN");
this.ARSPD_FBW_MIN.Name = "ARSPD_FBW_MIN";
- this.toolTip1.SetToolTip(this.ARSPD_FBW_MIN, resources.GetString("ARSPD_FBW_MIN.ToolTip"));
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
- this.toolTip1.SetToolTip(this.label3, resources.GetString("label3.ToolTip"));
//
// TRIM_ARSPD_CM
//
resources.ApplyResources(this.TRIM_ARSPD_CM, "TRIM_ARSPD_CM");
this.TRIM_ARSPD_CM.Name = "TRIM_ARSPD_CM";
- this.toolTip1.SetToolTip(this.TRIM_ARSPD_CM, resources.GetString("TRIM_ARSPD_CM.ToolTip"));
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
- this.toolTip1.SetToolTip(this.label4, resources.GetString("label4.ToolTip"));
//
// groupBox2
//
- resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.LIM_PITCH_MIN);
this.groupBox2.Controls.Add(this.label39);
this.groupBox2.Controls.Add(this.LIM_PITCH_MAX);
this.groupBox2.Controls.Add(this.label38);
this.groupBox2.Controls.Add(this.LIM_ROLL_CD);
this.groupBox2.Controls.Add(this.label37);
+ resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox2, resources.GetString("groupBox2.ToolTip"));
//
// LIM_PITCH_MIN
//
resources.ApplyResources(this.LIM_PITCH_MIN, "LIM_PITCH_MIN");
this.LIM_PITCH_MIN.Name = "LIM_PITCH_MIN";
- this.toolTip1.SetToolTip(this.LIM_PITCH_MIN, resources.GetString("LIM_PITCH_MIN.ToolTip"));
//
// label39
//
resources.ApplyResources(this.label39, "label39");
this.label39.Name = "label39";
- this.toolTip1.SetToolTip(this.label39, resources.GetString("label39.ToolTip"));
//
// LIM_PITCH_MAX
//
resources.ApplyResources(this.LIM_PITCH_MAX, "LIM_PITCH_MAX");
this.LIM_PITCH_MAX.Name = "LIM_PITCH_MAX";
- this.toolTip1.SetToolTip(this.LIM_PITCH_MAX, resources.GetString("LIM_PITCH_MAX.ToolTip"));
//
// label38
//
resources.ApplyResources(this.label38, "label38");
this.label38.Name = "label38";
- this.toolTip1.SetToolTip(this.label38, resources.GetString("label38.ToolTip"));
//
// LIM_ROLL_CD
//
resources.ApplyResources(this.LIM_ROLL_CD, "LIM_ROLL_CD");
this.LIM_ROLL_CD.Name = "LIM_ROLL_CD";
- this.toolTip1.SetToolTip(this.LIM_ROLL_CD, resources.GetString("LIM_ROLL_CD.ToolTip"));
//
// label37
//
resources.ApplyResources(this.label37, "label37");
this.label37.Name = "label37";
- this.toolTip1.SetToolTip(this.label37, resources.GetString("label37.ToolTip"));
//
// groupBox15
//
- resources.ApplyResources(this.groupBox15, "groupBox15");
this.groupBox15.Controls.Add(this.XTRK_ANGLE_CD);
this.groupBox15.Controls.Add(this.label79);
this.groupBox15.Controls.Add(this.XTRK_GAIN_SC);
this.groupBox15.Controls.Add(this.label80);
+ resources.ApplyResources(this.groupBox15, "groupBox15");
this.groupBox15.Name = "groupBox15";
this.groupBox15.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox15, resources.GetString("groupBox15.ToolTip"));
//
// XTRK_ANGLE_CD
//
resources.ApplyResources(this.XTRK_ANGLE_CD, "XTRK_ANGLE_CD");
this.XTRK_ANGLE_CD.Name = "XTRK_ANGLE_CD";
- this.toolTip1.SetToolTip(this.XTRK_ANGLE_CD, resources.GetString("XTRK_ANGLE_CD.ToolTip"));
//
// label79
//
resources.ApplyResources(this.label79, "label79");
this.label79.Name = "label79";
- this.toolTip1.SetToolTip(this.label79, resources.GetString("label79.ToolTip"));
//
// XTRK_GAIN_SC
//
resources.ApplyResources(this.XTRK_GAIN_SC, "XTRK_GAIN_SC");
this.XTRK_GAIN_SC.Name = "XTRK_GAIN_SC";
- this.toolTip1.SetToolTip(this.XTRK_GAIN_SC, resources.GetString("XTRK_GAIN_SC.ToolTip"));
//
// label80
//
resources.ApplyResources(this.label80, "label80");
this.label80.Name = "label80";
- this.toolTip1.SetToolTip(this.label80, resources.GetString("label80.ToolTip"));
//
// groupBox16
//
- resources.ApplyResources(this.groupBox16, "groupBox16");
this.groupBox16.Controls.Add(this.KFF_PTCH2THR);
this.groupBox16.Controls.Add(this.label83);
this.groupBox16.Controls.Add(this.KFF_RDDRMIX);
this.groupBox16.Controls.Add(this.label78);
this.groupBox16.Controls.Add(this.KFF_PTCHCOMP);
this.groupBox16.Controls.Add(this.label81);
+ resources.ApplyResources(this.groupBox16, "groupBox16");
this.groupBox16.Name = "groupBox16";
this.groupBox16.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox16, resources.GetString("groupBox16.ToolTip"));
//
// KFF_PTCH2THR
//
resources.ApplyResources(this.KFF_PTCH2THR, "KFF_PTCH2THR");
this.KFF_PTCH2THR.Name = "KFF_PTCH2THR";
- this.toolTip1.SetToolTip(this.KFF_PTCH2THR, resources.GetString("KFF_PTCH2THR.ToolTip"));
//
// label83
//
resources.ApplyResources(this.label83, "label83");
this.label83.Name = "label83";
- this.toolTip1.SetToolTip(this.label83, resources.GetString("label83.ToolTip"));
//
// KFF_RDDRMIX
//
resources.ApplyResources(this.KFF_RDDRMIX, "KFF_RDDRMIX");
this.KFF_RDDRMIX.Name = "KFF_RDDRMIX";
- this.toolTip1.SetToolTip(this.KFF_RDDRMIX, resources.GetString("KFF_RDDRMIX.ToolTip"));
//
// label78
//
resources.ApplyResources(this.label78, "label78");
this.label78.Name = "label78";
- this.toolTip1.SetToolTip(this.label78, resources.GetString("label78.ToolTip"));
//
// KFF_PTCHCOMP
//
resources.ApplyResources(this.KFF_PTCHCOMP, "KFF_PTCHCOMP");
this.KFF_PTCHCOMP.Name = "KFF_PTCHCOMP";
- this.toolTip1.SetToolTip(this.KFF_PTCHCOMP, resources.GetString("KFF_PTCHCOMP.ToolTip"));
//
// label81
//
resources.ApplyResources(this.label81, "label81");
this.label81.Name = "label81";
- this.toolTip1.SetToolTip(this.label81, resources.GetString("label81.ToolTip"));
//
// groupBox14
//
- resources.ApplyResources(this.groupBox14, "groupBox14");
this.groupBox14.Controls.Add(this.ENRGY2THR_IMAX);
this.groupBox14.Controls.Add(this.label73);
this.groupBox14.Controls.Add(this.ENRGY2THR_D);
@@ -767,61 +641,52 @@
this.groupBox14.Controls.Add(this.label75);
this.groupBox14.Controls.Add(this.ENRGY2THR_P);
this.groupBox14.Controls.Add(this.label76);
+ resources.ApplyResources(this.groupBox14, "groupBox14");
this.groupBox14.Name = "groupBox14";
this.groupBox14.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox14, resources.GetString("groupBox14.ToolTip"));
//
// ENRGY2THR_IMAX
//
resources.ApplyResources(this.ENRGY2THR_IMAX, "ENRGY2THR_IMAX");
this.ENRGY2THR_IMAX.Name = "ENRGY2THR_IMAX";
- this.toolTip1.SetToolTip(this.ENRGY2THR_IMAX, resources.GetString("ENRGY2THR_IMAX.ToolTip"));
//
// label73
//
resources.ApplyResources(this.label73, "label73");
this.label73.Name = "label73";
- this.toolTip1.SetToolTip(this.label73, resources.GetString("label73.ToolTip"));
//
// ENRGY2THR_D
//
resources.ApplyResources(this.ENRGY2THR_D, "ENRGY2THR_D");
this.ENRGY2THR_D.Name = "ENRGY2THR_D";
- this.toolTip1.SetToolTip(this.ENRGY2THR_D, resources.GetString("ENRGY2THR_D.ToolTip"));
//
// label74
//
resources.ApplyResources(this.label74, "label74");
this.label74.Name = "label74";
- this.toolTip1.SetToolTip(this.label74, resources.GetString("label74.ToolTip"));
//
// ENRGY2THR_I
//
resources.ApplyResources(this.ENRGY2THR_I, "ENRGY2THR_I");
this.ENRGY2THR_I.Name = "ENRGY2THR_I";
- this.toolTip1.SetToolTip(this.ENRGY2THR_I, resources.GetString("ENRGY2THR_I.ToolTip"));
//
// label75
//
resources.ApplyResources(this.label75, "label75");
this.label75.Name = "label75";
- this.toolTip1.SetToolTip(this.label75, resources.GetString("label75.ToolTip"));
//
// ENRGY2THR_P
//
resources.ApplyResources(this.ENRGY2THR_P, "ENRGY2THR_P");
this.ENRGY2THR_P.Name = "ENRGY2THR_P";
- this.toolTip1.SetToolTip(this.ENRGY2THR_P, resources.GetString("ENRGY2THR_P.ToolTip"));
//
// label76
//
resources.ApplyResources(this.label76, "label76");
this.label76.Name = "label76";
- this.toolTip1.SetToolTip(this.label76, resources.GetString("label76.ToolTip"));
//
// groupBox13
//
- resources.ApplyResources(this.groupBox13, "groupBox13");
this.groupBox13.Controls.Add(this.ALT2PTCH_IMAX);
this.groupBox13.Controls.Add(this.label69);
this.groupBox13.Controls.Add(this.ALT2PTCH_D);
@@ -830,61 +695,52 @@
this.groupBox13.Controls.Add(this.label71);
this.groupBox13.Controls.Add(this.ALT2PTCH_P);
this.groupBox13.Controls.Add(this.label72);
+ resources.ApplyResources(this.groupBox13, "groupBox13");
this.groupBox13.Name = "groupBox13";
this.groupBox13.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox13, resources.GetString("groupBox13.ToolTip"));
//
// ALT2PTCH_IMAX
//
resources.ApplyResources(this.ALT2PTCH_IMAX, "ALT2PTCH_IMAX");
this.ALT2PTCH_IMAX.Name = "ALT2PTCH_IMAX";
- this.toolTip1.SetToolTip(this.ALT2PTCH_IMAX, resources.GetString("ALT2PTCH_IMAX.ToolTip"));
//
// label69
//
resources.ApplyResources(this.label69, "label69");
this.label69.Name = "label69";
- this.toolTip1.SetToolTip(this.label69, resources.GetString("label69.ToolTip"));
//
// ALT2PTCH_D
//
resources.ApplyResources(this.ALT2PTCH_D, "ALT2PTCH_D");
this.ALT2PTCH_D.Name = "ALT2PTCH_D";
- this.toolTip1.SetToolTip(this.ALT2PTCH_D, resources.GetString("ALT2PTCH_D.ToolTip"));
//
// label70
//
resources.ApplyResources(this.label70, "label70");
this.label70.Name = "label70";
- this.toolTip1.SetToolTip(this.label70, resources.GetString("label70.ToolTip"));
//
// ALT2PTCH_I
//
resources.ApplyResources(this.ALT2PTCH_I, "ALT2PTCH_I");
this.ALT2PTCH_I.Name = "ALT2PTCH_I";
- this.toolTip1.SetToolTip(this.ALT2PTCH_I, resources.GetString("ALT2PTCH_I.ToolTip"));
//
// label71
//
resources.ApplyResources(this.label71, "label71");
this.label71.Name = "label71";
- this.toolTip1.SetToolTip(this.label71, resources.GetString("label71.ToolTip"));
//
// ALT2PTCH_P
//
resources.ApplyResources(this.ALT2PTCH_P, "ALT2PTCH_P");
this.ALT2PTCH_P.Name = "ALT2PTCH_P";
- this.toolTip1.SetToolTip(this.ALT2PTCH_P, resources.GetString("ALT2PTCH_P.ToolTip"));
//
// label72
//
resources.ApplyResources(this.label72, "label72");
this.label72.Name = "label72";
- this.toolTip1.SetToolTip(this.label72, resources.GetString("label72.ToolTip"));
//
// groupBox12
//
- resources.ApplyResources(this.groupBox12, "groupBox12");
this.groupBox12.Controls.Add(this.ARSP2PTCH_IMAX);
this.groupBox12.Controls.Add(this.label65);
this.groupBox12.Controls.Add(this.ARSP2PTCH_D);
@@ -893,61 +749,52 @@
this.groupBox12.Controls.Add(this.label67);
this.groupBox12.Controls.Add(this.ARSP2PTCH_P);
this.groupBox12.Controls.Add(this.label68);
+ resources.ApplyResources(this.groupBox12, "groupBox12");
this.groupBox12.Name = "groupBox12";
this.groupBox12.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox12, resources.GetString("groupBox12.ToolTip"));
//
// ARSP2PTCH_IMAX
//
resources.ApplyResources(this.ARSP2PTCH_IMAX, "ARSP2PTCH_IMAX");
this.ARSP2PTCH_IMAX.Name = "ARSP2PTCH_IMAX";
- this.toolTip1.SetToolTip(this.ARSP2PTCH_IMAX, resources.GetString("ARSP2PTCH_IMAX.ToolTip"));
//
// label65
//
resources.ApplyResources(this.label65, "label65");
this.label65.Name = "label65";
- this.toolTip1.SetToolTip(this.label65, resources.GetString("label65.ToolTip"));
//
// ARSP2PTCH_D
//
resources.ApplyResources(this.ARSP2PTCH_D, "ARSP2PTCH_D");
this.ARSP2PTCH_D.Name = "ARSP2PTCH_D";
- this.toolTip1.SetToolTip(this.ARSP2PTCH_D, resources.GetString("ARSP2PTCH_D.ToolTip"));
//
// label66
//
resources.ApplyResources(this.label66, "label66");
this.label66.Name = "label66";
- this.toolTip1.SetToolTip(this.label66, resources.GetString("label66.ToolTip"));
//
// ARSP2PTCH_I
//
resources.ApplyResources(this.ARSP2PTCH_I, "ARSP2PTCH_I");
this.ARSP2PTCH_I.Name = "ARSP2PTCH_I";
- this.toolTip1.SetToolTip(this.ARSP2PTCH_I, resources.GetString("ARSP2PTCH_I.ToolTip"));
//
// label67
//
resources.ApplyResources(this.label67, "label67");
this.label67.Name = "label67";
- this.toolTip1.SetToolTip(this.label67, resources.GetString("label67.ToolTip"));
//
// ARSP2PTCH_P
//
resources.ApplyResources(this.ARSP2PTCH_P, "ARSP2PTCH_P");
this.ARSP2PTCH_P.Name = "ARSP2PTCH_P";
- this.toolTip1.SetToolTip(this.ARSP2PTCH_P, resources.GetString("ARSP2PTCH_P.ToolTip"));
//
// label68
//
resources.ApplyResources(this.label68, "label68");
this.label68.Name = "label68";
- this.toolTip1.SetToolTip(this.label68, resources.GetString("label68.ToolTip"));
//
// groupBox11
//
- resources.ApplyResources(this.groupBox11, "groupBox11");
this.groupBox11.Controls.Add(this.HDNG2RLL_IMAX);
this.groupBox11.Controls.Add(this.label61);
this.groupBox11.Controls.Add(this.HDNG2RLL_D);
@@ -956,61 +803,52 @@
this.groupBox11.Controls.Add(this.label63);
this.groupBox11.Controls.Add(this.HDNG2RLL_P);
this.groupBox11.Controls.Add(this.label64);
+ resources.ApplyResources(this.groupBox11, "groupBox11");
this.groupBox11.Name = "groupBox11";
this.groupBox11.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox11, resources.GetString("groupBox11.ToolTip"));
//
// HDNG2RLL_IMAX
//
resources.ApplyResources(this.HDNG2RLL_IMAX, "HDNG2RLL_IMAX");
this.HDNG2RLL_IMAX.Name = "HDNG2RLL_IMAX";
- this.toolTip1.SetToolTip(this.HDNG2RLL_IMAX, resources.GetString("HDNG2RLL_IMAX.ToolTip"));
//
// label61
//
resources.ApplyResources(this.label61, "label61");
this.label61.Name = "label61";
- this.toolTip1.SetToolTip(this.label61, resources.GetString("label61.ToolTip"));
//
// HDNG2RLL_D
//
resources.ApplyResources(this.HDNG2RLL_D, "HDNG2RLL_D");
this.HDNG2RLL_D.Name = "HDNG2RLL_D";
- this.toolTip1.SetToolTip(this.HDNG2RLL_D, resources.GetString("HDNG2RLL_D.ToolTip"));
//
// label62
//
resources.ApplyResources(this.label62, "label62");
this.label62.Name = "label62";
- this.toolTip1.SetToolTip(this.label62, resources.GetString("label62.ToolTip"));
//
// HDNG2RLL_I
//
resources.ApplyResources(this.HDNG2RLL_I, "HDNG2RLL_I");
this.HDNG2RLL_I.Name = "HDNG2RLL_I";
- this.toolTip1.SetToolTip(this.HDNG2RLL_I, resources.GetString("HDNG2RLL_I.ToolTip"));
//
// label63
//
resources.ApplyResources(this.label63, "label63");
this.label63.Name = "label63";
- this.toolTip1.SetToolTip(this.label63, resources.GetString("label63.ToolTip"));
//
// HDNG2RLL_P
//
resources.ApplyResources(this.HDNG2RLL_P, "HDNG2RLL_P");
this.HDNG2RLL_P.Name = "HDNG2RLL_P";
- this.toolTip1.SetToolTip(this.HDNG2RLL_P, resources.GetString("HDNG2RLL_P.ToolTip"));
//
// label64
//
resources.ApplyResources(this.label64, "label64");
this.label64.Name = "label64";
- this.toolTip1.SetToolTip(this.label64, resources.GetString("label64.ToolTip"));
//
// groupBox10
//
- resources.ApplyResources(this.groupBox10, "groupBox10");
this.groupBox10.Controls.Add(this.YW2SRV_IMAX);
this.groupBox10.Controls.Add(this.label57);
this.groupBox10.Controls.Add(this.YW2SRV_D);
@@ -1019,61 +857,52 @@
this.groupBox10.Controls.Add(this.label59);
this.groupBox10.Controls.Add(this.YW2SRV_P);
this.groupBox10.Controls.Add(this.label60);
+ resources.ApplyResources(this.groupBox10, "groupBox10");
this.groupBox10.Name = "groupBox10";
this.groupBox10.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox10, resources.GetString("groupBox10.ToolTip"));
//
// YW2SRV_IMAX
//
resources.ApplyResources(this.YW2SRV_IMAX, "YW2SRV_IMAX");
this.YW2SRV_IMAX.Name = "YW2SRV_IMAX";
- this.toolTip1.SetToolTip(this.YW2SRV_IMAX, resources.GetString("YW2SRV_IMAX.ToolTip"));
//
// label57
//
resources.ApplyResources(this.label57, "label57");
this.label57.Name = "label57";
- this.toolTip1.SetToolTip(this.label57, resources.GetString("label57.ToolTip"));
//
// YW2SRV_D
//
resources.ApplyResources(this.YW2SRV_D, "YW2SRV_D");
this.YW2SRV_D.Name = "YW2SRV_D";
- this.toolTip1.SetToolTip(this.YW2SRV_D, resources.GetString("YW2SRV_D.ToolTip"));
//
// label58
//
resources.ApplyResources(this.label58, "label58");
this.label58.Name = "label58";
- this.toolTip1.SetToolTip(this.label58, resources.GetString("label58.ToolTip"));
//
// YW2SRV_I
//
resources.ApplyResources(this.YW2SRV_I, "YW2SRV_I");
this.YW2SRV_I.Name = "YW2SRV_I";
- this.toolTip1.SetToolTip(this.YW2SRV_I, resources.GetString("YW2SRV_I.ToolTip"));
//
// label59
//
resources.ApplyResources(this.label59, "label59");
this.label59.Name = "label59";
- this.toolTip1.SetToolTip(this.label59, resources.GetString("label59.ToolTip"));
//
// YW2SRV_P
//
resources.ApplyResources(this.YW2SRV_P, "YW2SRV_P");
this.YW2SRV_P.Name = "YW2SRV_P";
- this.toolTip1.SetToolTip(this.YW2SRV_P, resources.GetString("YW2SRV_P.ToolTip"));
//
// label60
//
resources.ApplyResources(this.label60, "label60");
this.label60.Name = "label60";
- this.toolTip1.SetToolTip(this.label60, resources.GetString("label60.ToolTip"));
//
// groupBox9
//
- resources.ApplyResources(this.groupBox9, "groupBox9");
this.groupBox9.Controls.Add(this.PTCH2SRV_IMAX);
this.groupBox9.Controls.Add(this.label53);
this.groupBox9.Controls.Add(this.PTCH2SRV_D);
@@ -1082,61 +911,52 @@
this.groupBox9.Controls.Add(this.label55);
this.groupBox9.Controls.Add(this.PTCH2SRV_P);
this.groupBox9.Controls.Add(this.label56);
+ resources.ApplyResources(this.groupBox9, "groupBox9");
this.groupBox9.Name = "groupBox9";
this.groupBox9.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox9, resources.GetString("groupBox9.ToolTip"));
//
// PTCH2SRV_IMAX
//
resources.ApplyResources(this.PTCH2SRV_IMAX, "PTCH2SRV_IMAX");
this.PTCH2SRV_IMAX.Name = "PTCH2SRV_IMAX";
- this.toolTip1.SetToolTip(this.PTCH2SRV_IMAX, resources.GetString("PTCH2SRV_IMAX.ToolTip"));
//
// label53
//
resources.ApplyResources(this.label53, "label53");
this.label53.Name = "label53";
- this.toolTip1.SetToolTip(this.label53, resources.GetString("label53.ToolTip"));
//
// PTCH2SRV_D
//
resources.ApplyResources(this.PTCH2SRV_D, "PTCH2SRV_D");
this.PTCH2SRV_D.Name = "PTCH2SRV_D";
- this.toolTip1.SetToolTip(this.PTCH2SRV_D, resources.GetString("PTCH2SRV_D.ToolTip"));
//
// label54
//
resources.ApplyResources(this.label54, "label54");
this.label54.Name = "label54";
- this.toolTip1.SetToolTip(this.label54, resources.GetString("label54.ToolTip"));
//
// PTCH2SRV_I
//
resources.ApplyResources(this.PTCH2SRV_I, "PTCH2SRV_I");
this.PTCH2SRV_I.Name = "PTCH2SRV_I";
- this.toolTip1.SetToolTip(this.PTCH2SRV_I, resources.GetString("PTCH2SRV_I.ToolTip"));
//
// label55
//
resources.ApplyResources(this.label55, "label55");
this.label55.Name = "label55";
- this.toolTip1.SetToolTip(this.label55, resources.GetString("label55.ToolTip"));
//
// PTCH2SRV_P
//
resources.ApplyResources(this.PTCH2SRV_P, "PTCH2SRV_P");
this.PTCH2SRV_P.Name = "PTCH2SRV_P";
- this.toolTip1.SetToolTip(this.PTCH2SRV_P, resources.GetString("PTCH2SRV_P.ToolTip"));
//
// label56
//
resources.ApplyResources(this.label56, "label56");
this.label56.Name = "label56";
- this.toolTip1.SetToolTip(this.label56, resources.GetString("label56.ToolTip"));
//
// groupBox8
//
- resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.Controls.Add(this.RLL2SRV_IMAX);
this.groupBox8.Controls.Add(this.label49);
this.groupBox8.Controls.Add(this.RLL2SRV_D);
@@ -1145,61 +965,52 @@
this.groupBox8.Controls.Add(this.label51);
this.groupBox8.Controls.Add(this.RLL2SRV_P);
this.groupBox8.Controls.Add(this.label52);
+ resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.Name = "groupBox8";
this.groupBox8.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox8, resources.GetString("groupBox8.ToolTip"));
//
// RLL2SRV_IMAX
//
resources.ApplyResources(this.RLL2SRV_IMAX, "RLL2SRV_IMAX");
this.RLL2SRV_IMAX.Name = "RLL2SRV_IMAX";
- this.toolTip1.SetToolTip(this.RLL2SRV_IMAX, resources.GetString("RLL2SRV_IMAX.ToolTip"));
//
// label49
//
resources.ApplyResources(this.label49, "label49");
this.label49.Name = "label49";
- this.toolTip1.SetToolTip(this.label49, resources.GetString("label49.ToolTip"));
//
// RLL2SRV_D
//
resources.ApplyResources(this.RLL2SRV_D, "RLL2SRV_D");
this.RLL2SRV_D.Name = "RLL2SRV_D";
- this.toolTip1.SetToolTip(this.RLL2SRV_D, resources.GetString("RLL2SRV_D.ToolTip"));
//
// label50
//
resources.ApplyResources(this.label50, "label50");
this.label50.Name = "label50";
- this.toolTip1.SetToolTip(this.label50, resources.GetString("label50.ToolTip"));
//
// RLL2SRV_I
//
resources.ApplyResources(this.RLL2SRV_I, "RLL2SRV_I");
this.RLL2SRV_I.Name = "RLL2SRV_I";
- this.toolTip1.SetToolTip(this.RLL2SRV_I, resources.GetString("RLL2SRV_I.ToolTip"));
//
// label51
//
resources.ApplyResources(this.label51, "label51");
this.label51.Name = "label51";
- this.toolTip1.SetToolTip(this.label51, resources.GetString("label51.ToolTip"));
//
// RLL2SRV_P
//
resources.ApplyResources(this.RLL2SRV_P, "RLL2SRV_P");
this.RLL2SRV_P.Name = "RLL2SRV_P";
- this.toolTip1.SetToolTip(this.RLL2SRV_P, resources.GetString("RLL2SRV_P.ToolTip"));
//
// label52
//
resources.ApplyResources(this.label52, "label52");
this.label52.Name = "label52";
- this.toolTip1.SetToolTip(this.label52, resources.GetString("label52.ToolTip"));
//
// TabAC2
//
- resources.ApplyResources(this.TabAC2, "TabAC2");
this.TabAC2.Controls.Add(this.groupBox17);
this.TabAC2.Controls.Add(this.groupBox5);
this.TabAC2.Controls.Add(this.groupBox18);
@@ -1214,155 +1025,50 @@
this.TabAC2.Controls.Add(this.groupBox23);
this.TabAC2.Controls.Add(this.groupBox24);
this.TabAC2.Controls.Add(this.groupBox25);
+ resources.ApplyResources(this.TabAC2, "TabAC2");
this.TabAC2.Name = "TabAC2";
- this.toolTip1.SetToolTip(this.TabAC2, resources.GetString("TabAC2.ToolTip"));
- //
- // groupBox17
- //
- resources.ApplyResources(this.groupBox17, "groupBox17");
- this.groupBox17.Controls.Add(this.ACRO_PIT_IMAX);
- this.groupBox17.Controls.Add(this.label27);
- this.groupBox17.Controls.Add(this.ACRO_PIT_I);
- this.groupBox17.Controls.Add(this.label29);
- this.groupBox17.Controls.Add(this.ACRO_PIT_P);
- this.groupBox17.Controls.Add(this.label33);
- this.groupBox17.Name = "groupBox17";
- this.groupBox17.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox17, resources.GetString("groupBox17.ToolTip"));
- //
- // ACRO_PIT_IMAX
- //
- resources.ApplyResources(this.ACRO_PIT_IMAX, "ACRO_PIT_IMAX");
- this.ACRO_PIT_IMAX.Name = "ACRO_PIT_IMAX";
- this.toolTip1.SetToolTip(this.ACRO_PIT_IMAX, resources.GetString("ACRO_PIT_IMAX.ToolTip"));
- //
- // label27
- //
- resources.ApplyResources(this.label27, "label27");
- this.label27.Name = "label27";
- this.toolTip1.SetToolTip(this.label27, resources.GetString("label27.ToolTip"));
- //
- // ACRO_PIT_I
- //
- resources.ApplyResources(this.ACRO_PIT_I, "ACRO_PIT_I");
- this.ACRO_PIT_I.Name = "ACRO_PIT_I";
- this.toolTip1.SetToolTip(this.ACRO_PIT_I, resources.GetString("ACRO_PIT_I.ToolTip"));
- //
- // label29
- //
- resources.ApplyResources(this.label29, "label29");
- this.label29.Name = "label29";
- this.toolTip1.SetToolTip(this.label29, resources.GetString("label29.ToolTip"));
- //
- // ACRO_PIT_P
- //
- resources.ApplyResources(this.ACRO_PIT_P, "ACRO_PIT_P");
- this.ACRO_PIT_P.Name = "ACRO_PIT_P";
- this.toolTip1.SetToolTip(this.ACRO_PIT_P, resources.GetString("ACRO_PIT_P.ToolTip"));
- //
- // label33
- //
- resources.ApplyResources(this.label33, "label33");
- this.label33.Name = "label33";
- this.toolTip1.SetToolTip(this.label33, resources.GetString("label33.ToolTip"));
//
// groupBox5
//
- resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.Controls.Add(this.label14);
this.groupBox5.Controls.Add(this.THR_RATE_IMAX);
this.groupBox5.Controls.Add(this.THR_RATE_I);
this.groupBox5.Controls.Add(this.label20);
this.groupBox5.Controls.Add(this.THR_RATE_P);
this.groupBox5.Controls.Add(this.label25);
+ resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox5, resources.GetString("groupBox5.ToolTip"));
//
// label14
//
resources.ApplyResources(this.label14, "label14");
this.label14.Name = "label14";
- this.toolTip1.SetToolTip(this.label14, resources.GetString("label14.ToolTip"));
//
// THR_RATE_IMAX
//
resources.ApplyResources(this.THR_RATE_IMAX, "THR_RATE_IMAX");
this.THR_RATE_IMAX.Name = "THR_RATE_IMAX";
- this.toolTip1.SetToolTip(this.THR_RATE_IMAX, resources.GetString("THR_RATE_IMAX.ToolTip"));
//
// THR_RATE_I
//
resources.ApplyResources(this.THR_RATE_I, "THR_RATE_I");
this.THR_RATE_I.Name = "THR_RATE_I";
- this.toolTip1.SetToolTip(this.THR_RATE_I, resources.GetString("THR_RATE_I.ToolTip"));
//
// label20
//
resources.ApplyResources(this.label20, "label20");
this.label20.Name = "label20";
- this.toolTip1.SetToolTip(this.label20, resources.GetString("label20.ToolTip"));
//
// THR_RATE_P
//
resources.ApplyResources(this.THR_RATE_P, "THR_RATE_P");
this.THR_RATE_P.Name = "THR_RATE_P";
- this.toolTip1.SetToolTip(this.THR_RATE_P, resources.GetString("THR_RATE_P.ToolTip"));
//
// label25
//
resources.ApplyResources(this.label25, "label25");
this.label25.Name = "label25";
- this.toolTip1.SetToolTip(this.label25, resources.GetString("label25.ToolTip"));
- //
- // groupBox18
- //
- resources.ApplyResources(this.groupBox18, "groupBox18");
- this.groupBox18.Controls.Add(this.ACRO_RLL_IMAX);
- this.groupBox18.Controls.Add(this.label40);
- this.groupBox18.Controls.Add(this.ACRO_RLL_I);
- this.groupBox18.Controls.Add(this.label44);
- this.groupBox18.Controls.Add(this.ACRO_RLL_P);
- this.groupBox18.Controls.Add(this.label48);
- this.groupBox18.Name = "groupBox18";
- this.groupBox18.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox18, resources.GetString("groupBox18.ToolTip"));
- //
- // ACRO_RLL_IMAX
- //
- resources.ApplyResources(this.ACRO_RLL_IMAX, "ACRO_RLL_IMAX");
- this.ACRO_RLL_IMAX.Name = "ACRO_RLL_IMAX";
- this.toolTip1.SetToolTip(this.ACRO_RLL_IMAX, resources.GetString("ACRO_RLL_IMAX.ToolTip"));
- //
- // label40
- //
- resources.ApplyResources(this.label40, "label40");
- this.label40.Name = "label40";
- this.toolTip1.SetToolTip(this.label40, resources.GetString("label40.ToolTip"));
- //
- // ACRO_RLL_I
- //
- resources.ApplyResources(this.ACRO_RLL_I, "ACRO_RLL_I");
- this.ACRO_RLL_I.Name = "ACRO_RLL_I";
- this.toolTip1.SetToolTip(this.ACRO_RLL_I, resources.GetString("ACRO_RLL_I.ToolTip"));
- //
- // label44
- //
- resources.ApplyResources(this.label44, "label44");
- this.label44.Name = "label44";
- this.toolTip1.SetToolTip(this.label44, resources.GetString("label44.ToolTip"));
- //
- // ACRO_RLL_P
- //
- resources.ApplyResources(this.ACRO_RLL_P, "ACRO_RLL_P");
- this.ACRO_RLL_P.Name = "ACRO_RLL_P";
- this.toolTip1.SetToolTip(this.ACRO_RLL_P, resources.GetString("ACRO_RLL_P.ToolTip"));
- //
- // label48
- //
- resources.ApplyResources(this.label48, "label48");
- this.label48.Name = "label48";
- this.toolTip1.SetToolTip(this.label48, resources.GetString("label48.ToolTip"));
//
// CHK_lockrollpitch
//
@@ -1370,13 +1076,11 @@
this.CHK_lockrollpitch.Checked = true;
this.CHK_lockrollpitch.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHK_lockrollpitch.Name = "CHK_lockrollpitch";
- this.toolTip1.SetToolTip(this.CHK_lockrollpitch, resources.GetString("CHK_lockrollpitch.ToolTip"));
this.CHK_lockrollpitch.UseVisualStyleBackColor = true;
this.CHK_lockrollpitch.CheckedChanged += new System.EventHandler(this.CHK_lockrollpitch_CheckedChanged);
//
// groupBox4
//
- resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Controls.Add(this.WP_SPEED_MAX);
this.groupBox4.Controls.Add(this.label9);
this.groupBox4.Controls.Add(this.NAV_LAT_IMAX);
@@ -1385,61 +1089,52 @@
this.groupBox4.Controls.Add(this.label15);
this.groupBox4.Controls.Add(this.NAV_LAT_P);
this.groupBox4.Controls.Add(this.label16);
+ resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox4, resources.GetString("groupBox4.ToolTip"));
//
// WP_SPEED_MAX
//
resources.ApplyResources(this.WP_SPEED_MAX, "WP_SPEED_MAX");
this.WP_SPEED_MAX.Name = "WP_SPEED_MAX";
- this.toolTip1.SetToolTip(this.WP_SPEED_MAX, resources.GetString("WP_SPEED_MAX.ToolTip"));
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
- this.toolTip1.SetToolTip(this.label9, resources.GetString("label9.ToolTip"));
//
// NAV_LAT_IMAX
//
resources.ApplyResources(this.NAV_LAT_IMAX, "NAV_LAT_IMAX");
this.NAV_LAT_IMAX.Name = "NAV_LAT_IMAX";
- this.toolTip1.SetToolTip(this.NAV_LAT_IMAX, resources.GetString("NAV_LAT_IMAX.ToolTip"));
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
- this.toolTip1.SetToolTip(this.label13, resources.GetString("label13.ToolTip"));
//
// NAV_LAT_I
//
resources.ApplyResources(this.NAV_LAT_I, "NAV_LAT_I");
this.NAV_LAT_I.Name = "NAV_LAT_I";
- this.toolTip1.SetToolTip(this.NAV_LAT_I, resources.GetString("NAV_LAT_I.ToolTip"));
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
- this.toolTip1.SetToolTip(this.label15, resources.GetString("label15.ToolTip"));
//
// NAV_LAT_P
//
resources.ApplyResources(this.NAV_LAT_P, "NAV_LAT_P");
this.NAV_LAT_P.Name = "NAV_LAT_P";
- this.toolTip1.SetToolTip(this.NAV_LAT_P, resources.GetString("NAV_LAT_P.ToolTip"));
//
// label16
//
resources.ApplyResources(this.label16, "label16");
this.label16.Name = "label16";
- this.toolTip1.SetToolTip(this.label16, resources.GetString("label16.ToolTip"));
//
// groupBox6
//
- resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Controls.Add(this.XTRK_ANGLE_CD1);
this.groupBox6.Controls.Add(this.label10);
this.groupBox6.Controls.Add(this.XTRACK_IMAX);
@@ -1448,453 +1143,388 @@
this.groupBox6.Controls.Add(this.label17);
this.groupBox6.Controls.Add(this.XTRACK_P);
this.groupBox6.Controls.Add(this.label18);
+ resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox6, resources.GetString("groupBox6.ToolTip"));
//
// XTRK_ANGLE_CD1
//
resources.ApplyResources(this.XTRK_ANGLE_CD1, "XTRK_ANGLE_CD1");
this.XTRK_ANGLE_CD1.Name = "XTRK_ANGLE_CD1";
- this.toolTip1.SetToolTip(this.XTRK_ANGLE_CD1, resources.GetString("XTRK_ANGLE_CD1.ToolTip"));
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
- this.toolTip1.SetToolTip(this.label10, resources.GetString("label10.ToolTip"));
//
// XTRACK_IMAX
//
resources.ApplyResources(this.XTRACK_IMAX, "XTRACK_IMAX");
this.XTRACK_IMAX.Name = "XTRACK_IMAX";
- this.toolTip1.SetToolTip(this.XTRACK_IMAX, resources.GetString("XTRACK_IMAX.ToolTip"));
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
- this.toolTip1.SetToolTip(this.label11, resources.GetString("label11.ToolTip"));
//
// XTRACK_I
//
resources.ApplyResources(this.XTRACK_I, "XTRACK_I");
this.XTRACK_I.Name = "XTRACK_I";
- this.toolTip1.SetToolTip(this.XTRACK_I, resources.GetString("XTRACK_I.ToolTip"));
//
// label17
//
resources.ApplyResources(this.label17, "label17");
this.label17.Name = "label17";
- this.toolTip1.SetToolTip(this.label17, resources.GetString("label17.ToolTip"));
//
// XTRACK_P
//
resources.ApplyResources(this.XTRACK_P, "XTRACK_P");
this.XTRACK_P.Name = "XTRACK_P";
- this.toolTip1.SetToolTip(this.XTRACK_P, resources.GetString("XTRACK_P.ToolTip"));
//
// label18
//
resources.ApplyResources(this.label18, "label18");
this.label18.Name = "label18";
- this.toolTip1.SetToolTip(this.label18, resources.GetString("label18.ToolTip"));
//
// groupBox7
//
- resources.ApplyResources(this.groupBox7, "groupBox7");
this.groupBox7.Controls.Add(this.THR_ALT_IMAX);
this.groupBox7.Controls.Add(this.label19);
this.groupBox7.Controls.Add(this.THR_ALT_I);
this.groupBox7.Controls.Add(this.label21);
this.groupBox7.Controls.Add(this.THR_ALT_P);
this.groupBox7.Controls.Add(this.label22);
+ resources.ApplyResources(this.groupBox7, "groupBox7");
this.groupBox7.Name = "groupBox7";
this.groupBox7.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox7, resources.GetString("groupBox7.ToolTip"));
//
// THR_ALT_IMAX
//
resources.ApplyResources(this.THR_ALT_IMAX, "THR_ALT_IMAX");
this.THR_ALT_IMAX.Name = "THR_ALT_IMAX";
- this.toolTip1.SetToolTip(this.THR_ALT_IMAX, resources.GetString("THR_ALT_IMAX.ToolTip"));
//
// label19
//
resources.ApplyResources(this.label19, "label19");
this.label19.Name = "label19";
- this.toolTip1.SetToolTip(this.label19, resources.GetString("label19.ToolTip"));
//
// THR_ALT_I
//
resources.ApplyResources(this.THR_ALT_I, "THR_ALT_I");
this.THR_ALT_I.Name = "THR_ALT_I";
- this.toolTip1.SetToolTip(this.THR_ALT_I, resources.GetString("THR_ALT_I.ToolTip"));
//
// label21
//
resources.ApplyResources(this.label21, "label21");
this.label21.Name = "label21";
- this.toolTip1.SetToolTip(this.label21, resources.GetString("label21.ToolTip"));
//
// THR_ALT_P
//
resources.ApplyResources(this.THR_ALT_P, "THR_ALT_P");
this.THR_ALT_P.Name = "THR_ALT_P";
- this.toolTip1.SetToolTip(this.THR_ALT_P, resources.GetString("THR_ALT_P.ToolTip"));
//
// label22
//
resources.ApplyResources(this.label22, "label22");
this.label22.Name = "label22";
- this.toolTip1.SetToolTip(this.label22, resources.GetString("label22.ToolTip"));
//
// groupBox19
//
- resources.ApplyResources(this.groupBox19, "groupBox19");
this.groupBox19.Controls.Add(this.HLD_LAT_IMAX);
this.groupBox19.Controls.Add(this.label28);
this.groupBox19.Controls.Add(this.HLD_LAT_I);
this.groupBox19.Controls.Add(this.label30);
this.groupBox19.Controls.Add(this.HLD_LAT_P);
this.groupBox19.Controls.Add(this.label31);
+ resources.ApplyResources(this.groupBox19, "groupBox19");
this.groupBox19.Name = "groupBox19";
this.groupBox19.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox19, resources.GetString("groupBox19.ToolTip"));
//
// HLD_LAT_IMAX
//
resources.ApplyResources(this.HLD_LAT_IMAX, "HLD_LAT_IMAX");
this.HLD_LAT_IMAX.Name = "HLD_LAT_IMAX";
- this.toolTip1.SetToolTip(this.HLD_LAT_IMAX, resources.GetString("HLD_LAT_IMAX.ToolTip"));
//
// label28
//
resources.ApplyResources(this.label28, "label28");
this.label28.Name = "label28";
- this.toolTip1.SetToolTip(this.label28, resources.GetString("label28.ToolTip"));
//
// HLD_LAT_I
//
resources.ApplyResources(this.HLD_LAT_I, "HLD_LAT_I");
this.HLD_LAT_I.Name = "HLD_LAT_I";
- this.toolTip1.SetToolTip(this.HLD_LAT_I, resources.GetString("HLD_LAT_I.ToolTip"));
//
// label30
//
resources.ApplyResources(this.label30, "label30");
this.label30.Name = "label30";
- this.toolTip1.SetToolTip(this.label30, resources.GetString("label30.ToolTip"));
//
// HLD_LAT_P
//
resources.ApplyResources(this.HLD_LAT_P, "HLD_LAT_P");
this.HLD_LAT_P.Name = "HLD_LAT_P";
- this.toolTip1.SetToolTip(this.HLD_LAT_P, resources.GetString("HLD_LAT_P.ToolTip"));
//
// label31
//
resources.ApplyResources(this.label31, "label31");
this.label31.Name = "label31";
- this.toolTip1.SetToolTip(this.label31, resources.GetString("label31.ToolTip"));
//
// groupBox20
//
- resources.ApplyResources(this.groupBox20, "groupBox20");
this.groupBox20.Controls.Add(this.STB_YAW_IMAX);
this.groupBox20.Controls.Add(this.label32);
this.groupBox20.Controls.Add(this.STB_YAW_I);
this.groupBox20.Controls.Add(this.label34);
this.groupBox20.Controls.Add(this.STB_YAW_P);
this.groupBox20.Controls.Add(this.label35);
+ resources.ApplyResources(this.groupBox20, "groupBox20");
this.groupBox20.Name = "groupBox20";
this.groupBox20.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox20, resources.GetString("groupBox20.ToolTip"));
//
// STB_YAW_IMAX
//
resources.ApplyResources(this.STB_YAW_IMAX, "STB_YAW_IMAX");
this.STB_YAW_IMAX.Name = "STB_YAW_IMAX";
- this.toolTip1.SetToolTip(this.STB_YAW_IMAX, resources.GetString("STB_YAW_IMAX.ToolTip"));
//
// label32
//
resources.ApplyResources(this.label32, "label32");
this.label32.Name = "label32";
- this.toolTip1.SetToolTip(this.label32, resources.GetString("label32.ToolTip"));
//
// STB_YAW_I
//
resources.ApplyResources(this.STB_YAW_I, "STB_YAW_I");
this.STB_YAW_I.Name = "STB_YAW_I";
- this.toolTip1.SetToolTip(this.STB_YAW_I, resources.GetString("STB_YAW_I.ToolTip"));
//
// label34
//
resources.ApplyResources(this.label34, "label34");
this.label34.Name = "label34";
- this.toolTip1.SetToolTip(this.label34, resources.GetString("label34.ToolTip"));
//
// STB_YAW_P
//
resources.ApplyResources(this.STB_YAW_P, "STB_YAW_P");
this.STB_YAW_P.Name = "STB_YAW_P";
- this.toolTip1.SetToolTip(this.STB_YAW_P, resources.GetString("STB_YAW_P.ToolTip"));
//
// label35
//
resources.ApplyResources(this.label35, "label35");
this.label35.Name = "label35";
- this.toolTip1.SetToolTip(this.label35, resources.GetString("label35.ToolTip"));
//
// groupBox21
//
- resources.ApplyResources(this.groupBox21, "groupBox21");
this.groupBox21.Controls.Add(this.STB_PIT_IMAX);
this.groupBox21.Controls.Add(this.label36);
this.groupBox21.Controls.Add(this.STB_PIT_I);
this.groupBox21.Controls.Add(this.label41);
this.groupBox21.Controls.Add(this.STB_PIT_P);
this.groupBox21.Controls.Add(this.label42);
+ resources.ApplyResources(this.groupBox21, "groupBox21");
this.groupBox21.Name = "groupBox21";
this.groupBox21.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox21, resources.GetString("groupBox21.ToolTip"));
//
// STB_PIT_IMAX
//
resources.ApplyResources(this.STB_PIT_IMAX, "STB_PIT_IMAX");
this.STB_PIT_IMAX.Name = "STB_PIT_IMAX";
- this.toolTip1.SetToolTip(this.STB_PIT_IMAX, resources.GetString("STB_PIT_IMAX.ToolTip"));
//
// label36
//
resources.ApplyResources(this.label36, "label36");
this.label36.Name = "label36";
- this.toolTip1.SetToolTip(this.label36, resources.GetString("label36.ToolTip"));
//
// STB_PIT_I
//
resources.ApplyResources(this.STB_PIT_I, "STB_PIT_I");
this.STB_PIT_I.Name = "STB_PIT_I";
- this.toolTip1.SetToolTip(this.STB_PIT_I, resources.GetString("STB_PIT_I.ToolTip"));
//
// label41
//
resources.ApplyResources(this.label41, "label41");
this.label41.Name = "label41";
- this.toolTip1.SetToolTip(this.label41, resources.GetString("label41.ToolTip"));
//
// STB_PIT_P
//
resources.ApplyResources(this.STB_PIT_P, "STB_PIT_P");
this.STB_PIT_P.Name = "STB_PIT_P";
- this.toolTip1.SetToolTip(this.STB_PIT_P, resources.GetString("STB_PIT_P.ToolTip"));
//
// label42
//
resources.ApplyResources(this.label42, "label42");
this.label42.Name = "label42";
- this.toolTip1.SetToolTip(this.label42, resources.GetString("label42.ToolTip"));
//
// groupBox22
//
- resources.ApplyResources(this.groupBox22, "groupBox22");
this.groupBox22.Controls.Add(this.STB_RLL_IMAX);
this.groupBox22.Controls.Add(this.label43);
this.groupBox22.Controls.Add(this.STB_RLL_I);
this.groupBox22.Controls.Add(this.label45);
this.groupBox22.Controls.Add(this.STB_RLL_P);
this.groupBox22.Controls.Add(this.label46);
+ resources.ApplyResources(this.groupBox22, "groupBox22");
this.groupBox22.Name = "groupBox22";
this.groupBox22.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox22, resources.GetString("groupBox22.ToolTip"));
//
// STB_RLL_IMAX
//
resources.ApplyResources(this.STB_RLL_IMAX, "STB_RLL_IMAX");
this.STB_RLL_IMAX.Name = "STB_RLL_IMAX";
- this.toolTip1.SetToolTip(this.STB_RLL_IMAX, resources.GetString("STB_RLL_IMAX.ToolTip"));
//
// label43
//
resources.ApplyResources(this.label43, "label43");
this.label43.Name = "label43";
- this.toolTip1.SetToolTip(this.label43, resources.GetString("label43.ToolTip"));
//
// STB_RLL_I
//
resources.ApplyResources(this.STB_RLL_I, "STB_RLL_I");
this.STB_RLL_I.Name = "STB_RLL_I";
- this.toolTip1.SetToolTip(this.STB_RLL_I, resources.GetString("STB_RLL_I.ToolTip"));
//
// label45
//
resources.ApplyResources(this.label45, "label45");
this.label45.Name = "label45";
- this.toolTip1.SetToolTip(this.label45, resources.GetString("label45.ToolTip"));
//
// STB_RLL_P
//
resources.ApplyResources(this.STB_RLL_P, "STB_RLL_P");
this.STB_RLL_P.Name = "STB_RLL_P";
- this.toolTip1.SetToolTip(this.STB_RLL_P, resources.GetString("STB_RLL_P.ToolTip"));
//
// label46
//
resources.ApplyResources(this.label46, "label46");
this.label46.Name = "label46";
- this.toolTip1.SetToolTip(this.label46, resources.GetString("label46.ToolTip"));
//
// groupBox23
//
- resources.ApplyResources(this.groupBox23, "groupBox23");
this.groupBox23.Controls.Add(this.RATE_YAW_IMAX);
this.groupBox23.Controls.Add(this.label47);
this.groupBox23.Controls.Add(this.RATE_YAW_I);
this.groupBox23.Controls.Add(this.label77);
this.groupBox23.Controls.Add(this.RATE_YAW_P);
this.groupBox23.Controls.Add(this.label82);
+ resources.ApplyResources(this.groupBox23, "groupBox23");
this.groupBox23.Name = "groupBox23";
this.groupBox23.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox23, resources.GetString("groupBox23.ToolTip"));
//
// RATE_YAW_IMAX
//
resources.ApplyResources(this.RATE_YAW_IMAX, "RATE_YAW_IMAX");
this.RATE_YAW_IMAX.Name = "RATE_YAW_IMAX";
- this.toolTip1.SetToolTip(this.RATE_YAW_IMAX, resources.GetString("RATE_YAW_IMAX.ToolTip"));
//
// label47
//
resources.ApplyResources(this.label47, "label47");
this.label47.Name = "label47";
- this.toolTip1.SetToolTip(this.label47, resources.GetString("label47.ToolTip"));
//
// RATE_YAW_I
//
resources.ApplyResources(this.RATE_YAW_I, "RATE_YAW_I");
this.RATE_YAW_I.Name = "RATE_YAW_I";
- this.toolTip1.SetToolTip(this.RATE_YAW_I, resources.GetString("RATE_YAW_I.ToolTip"));
//
// label77
//
resources.ApplyResources(this.label77, "label77");
this.label77.Name = "label77";
- this.toolTip1.SetToolTip(this.label77, resources.GetString("label77.ToolTip"));
//
// RATE_YAW_P
//
resources.ApplyResources(this.RATE_YAW_P, "RATE_YAW_P");
this.RATE_YAW_P.Name = "RATE_YAW_P";
- this.toolTip1.SetToolTip(this.RATE_YAW_P, resources.GetString("RATE_YAW_P.ToolTip"));
//
// label82
//
resources.ApplyResources(this.label82, "label82");
this.label82.Name = "label82";
- this.toolTip1.SetToolTip(this.label82, resources.GetString("label82.ToolTip"));
//
// groupBox24
//
- resources.ApplyResources(this.groupBox24, "groupBox24");
this.groupBox24.Controls.Add(this.RATE_PIT_IMAX);
this.groupBox24.Controls.Add(this.label84);
this.groupBox24.Controls.Add(this.RATE_PIT_I);
this.groupBox24.Controls.Add(this.label86);
this.groupBox24.Controls.Add(this.RATE_PIT_P);
this.groupBox24.Controls.Add(this.label87);
+ resources.ApplyResources(this.groupBox24, "groupBox24");
this.groupBox24.Name = "groupBox24";
this.groupBox24.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox24, resources.GetString("groupBox24.ToolTip"));
//
// RATE_PIT_IMAX
//
resources.ApplyResources(this.RATE_PIT_IMAX, "RATE_PIT_IMAX");
this.RATE_PIT_IMAX.Name = "RATE_PIT_IMAX";
- this.toolTip1.SetToolTip(this.RATE_PIT_IMAX, resources.GetString("RATE_PIT_IMAX.ToolTip"));
//
// label84
//
resources.ApplyResources(this.label84, "label84");
this.label84.Name = "label84";
- this.toolTip1.SetToolTip(this.label84, resources.GetString("label84.ToolTip"));
//
// RATE_PIT_I
//
resources.ApplyResources(this.RATE_PIT_I, "RATE_PIT_I");
this.RATE_PIT_I.Name = "RATE_PIT_I";
- this.toolTip1.SetToolTip(this.RATE_PIT_I, resources.GetString("RATE_PIT_I.ToolTip"));
//
// label86
//
resources.ApplyResources(this.label86, "label86");
this.label86.Name = "label86";
- this.toolTip1.SetToolTip(this.label86, resources.GetString("label86.ToolTip"));
//
// RATE_PIT_P
//
resources.ApplyResources(this.RATE_PIT_P, "RATE_PIT_P");
this.RATE_PIT_P.Name = "RATE_PIT_P";
- this.toolTip1.SetToolTip(this.RATE_PIT_P, resources.GetString("RATE_PIT_P.ToolTip"));
//
// label87
//
resources.ApplyResources(this.label87, "label87");
this.label87.Name = "label87";
- this.toolTip1.SetToolTip(this.label87, resources.GetString("label87.ToolTip"));
//
// groupBox25
//
- resources.ApplyResources(this.groupBox25, "groupBox25");
this.groupBox25.Controls.Add(this.RATE_RLL_IMAX);
this.groupBox25.Controls.Add(this.label88);
this.groupBox25.Controls.Add(this.RATE_RLL_I);
this.groupBox25.Controls.Add(this.label90);
this.groupBox25.Controls.Add(this.RATE_RLL_P);
this.groupBox25.Controls.Add(this.label91);
+ resources.ApplyResources(this.groupBox25, "groupBox25");
this.groupBox25.Name = "groupBox25";
this.groupBox25.TabStop = false;
- this.toolTip1.SetToolTip(this.groupBox25, resources.GetString("groupBox25.ToolTip"));
//
// RATE_RLL_IMAX
//
resources.ApplyResources(this.RATE_RLL_IMAX, "RATE_RLL_IMAX");
this.RATE_RLL_IMAX.Name = "RATE_RLL_IMAX";
- this.toolTip1.SetToolTip(this.RATE_RLL_IMAX, resources.GetString("RATE_RLL_IMAX.ToolTip"));
//
// label88
//
resources.ApplyResources(this.label88, "label88");
this.label88.Name = "label88";
- this.toolTip1.SetToolTip(this.label88, resources.GetString("label88.ToolTip"));
//
// RATE_RLL_I
//
resources.ApplyResources(this.RATE_RLL_I, "RATE_RLL_I");
this.RATE_RLL_I.Name = "RATE_RLL_I";
- this.toolTip1.SetToolTip(this.RATE_RLL_I, resources.GetString("RATE_RLL_I.ToolTip"));
//
// label90
//
resources.ApplyResources(this.label90, "label90");
this.label90.Name = "label90";
- this.toolTip1.SetToolTip(this.label90, resources.GetString("label90.ToolTip"));
//
// RATE_RLL_P
//
resources.ApplyResources(this.RATE_RLL_P, "RATE_RLL_P");
this.RATE_RLL_P.Name = "RATE_RLL_P";
- this.toolTip1.SetToolTip(this.RATE_RLL_P, resources.GetString("RATE_RLL_P.ToolTip"));
//
// label91
//
resources.ApplyResources(this.label91, "label91");
this.label91.Name = "label91";
- this.toolTip1.SetToolTip(this.label91, resources.GetString("label91.ToolTip"));
//
// TabPlanner
//
- resources.ApplyResources(this.TabPlanner, "TabPlanner");
this.TabPlanner.Controls.Add(this.label26);
this.TabPlanner.Controls.Add(this.CMB_videoresolutions);
this.TabPlanner.Controls.Add(this.label12);
@@ -1938,28 +1568,25 @@
this.TabPlanner.Controls.Add(this.BUT_Joystick);
this.TabPlanner.Controls.Add(this.BUT_videostop);
this.TabPlanner.Controls.Add(this.BUT_videostart);
+ resources.ApplyResources(this.TabPlanner, "TabPlanner");
this.TabPlanner.Name = "TabPlanner";
- this.toolTip1.SetToolTip(this.TabPlanner, resources.GetString("TabPlanner.ToolTip"));
//
// label26
//
resources.ApplyResources(this.label26, "label26");
this.label26.Name = "label26";
- this.toolTip1.SetToolTip(this.label26, resources.GetString("label26.ToolTip"));
//
// CMB_videoresolutions
//
- resources.ApplyResources(this.CMB_videoresolutions, "CMB_videoresolutions");
this.CMB_videoresolutions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_videoresolutions.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_videoresolutions, "CMB_videoresolutions");
this.CMB_videoresolutions.Name = "CMB_videoresolutions";
- this.toolTip1.SetToolTip(this.CMB_videoresolutions, resources.GetString("CMB_videoresolutions.ToolTip"));
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
- this.toolTip1.SetToolTip(this.label12, resources.GetString("label12.ToolTip"));
//
// CHK_GDIPlus
//
@@ -1973,13 +1600,11 @@
//
resources.ApplyResources(this.label24, "label24");
this.label24.Name = "label24";
- this.toolTip1.SetToolTip(this.label24, resources.GetString("label24.ToolTip"));
//
// CHK_loadwponconnect
//
resources.ApplyResources(this.CHK_loadwponconnect, "CHK_loadwponconnect");
this.CHK_loadwponconnect.Name = "CHK_loadwponconnect";
- this.toolTip1.SetToolTip(this.CHK_loadwponconnect, resources.GetString("CHK_loadwponconnect.ToolTip"));
this.CHK_loadwponconnect.UseVisualStyleBackColor = true;
this.CHK_loadwponconnect.CheckedChanged += new System.EventHandler(this.CHK_loadwponconnect_CheckedChanged);
//
@@ -1987,16 +1612,15 @@
//
resources.ApplyResources(this.label23, "label23");
this.label23.Name = "label23";
- this.toolTip1.SetToolTip(this.label23, resources.GetString("label23.ToolTip"));
//
// NUM_tracklength
//
- resources.ApplyResources(this.NUM_tracklength, "NUM_tracklength");
this.NUM_tracklength.Increment = new decimal(new int[] {
100,
0,
0,
0});
+ resources.ApplyResources(this.NUM_tracklength, "NUM_tracklength");
this.NUM_tracklength.Maximum = new decimal(new int[] {
2000,
0,
@@ -2020,7 +1644,6 @@
//
resources.ApplyResources(this.CHK_speechaltwarning, "CHK_speechaltwarning");
this.CHK_speechaltwarning.Name = "CHK_speechaltwarning";
- this.toolTip1.SetToolTip(this.CHK_speechaltwarning, resources.GetString("CHK_speechaltwarning.ToolTip"));
this.CHK_speechaltwarning.UseVisualStyleBackColor = true;
this.CHK_speechaltwarning.CheckedChanged += new System.EventHandler(this.CHK_speechaltwarning_CheckedChanged);
//
@@ -2028,15 +1651,13 @@
//
resources.ApplyResources(this.label108, "label108");
this.label108.Name = "label108";
- this.toolTip1.SetToolTip(this.label108, resources.GetString("label108.ToolTip"));
//
// CHK_resetapmonconnect
//
- resources.ApplyResources(this.CHK_resetapmonconnect, "CHK_resetapmonconnect");
this.CHK_resetapmonconnect.Checked = true;
this.CHK_resetapmonconnect.CheckState = System.Windows.Forms.CheckState.Checked;
+ resources.ApplyResources(this.CHK_resetapmonconnect, "CHK_resetapmonconnect");
this.CHK_resetapmonconnect.Name = "CHK_resetapmonconnect";
- this.toolTip1.SetToolTip(this.CHK_resetapmonconnect, resources.GetString("CHK_resetapmonconnect.ToolTip"));
this.CHK_resetapmonconnect.UseVisualStyleBackColor = true;
this.CHK_resetapmonconnect.CheckedChanged += new System.EventHandler(this.CHK_resetapmonconnect_CheckedChanged);
//
@@ -2044,7 +1665,6 @@
//
resources.ApplyResources(this.CHK_mavdebug, "CHK_mavdebug");
this.CHK_mavdebug.Name = "CHK_mavdebug";
- this.toolTip1.SetToolTip(this.CHK_mavdebug, resources.GetString("CHK_mavdebug.ToolTip"));
this.CHK_mavdebug.UseVisualStyleBackColor = true;
this.CHK_mavdebug.CheckedChanged += new System.EventHandler(this.CHK_mavdebug_CheckedChanged);
//
@@ -2052,11 +1672,9 @@
//
resources.ApplyResources(this.label107, "label107");
this.label107.Name = "label107";
- this.toolTip1.SetToolTip(this.label107, resources.GetString("label107.ToolTip"));
//
// CMB_raterc
//
- resources.ApplyResources(this.CMB_raterc, "CMB_raterc");
this.CMB_raterc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_raterc.FormattingEnabled = true;
this.CMB_raterc.Items.AddRange(new object[] {
@@ -2064,37 +1682,32 @@
resources.GetString("CMB_raterc.Items1"),
resources.GetString("CMB_raterc.Items2"),
resources.GetString("CMB_raterc.Items3")});
+ resources.ApplyResources(this.CMB_raterc, "CMB_raterc");
this.CMB_raterc.Name = "CMB_raterc";
- this.toolTip1.SetToolTip(this.CMB_raterc, resources.GetString("CMB_raterc.ToolTip"));
this.CMB_raterc.SelectedIndexChanged += new System.EventHandler(this.CMB_raterc_SelectedIndexChanged);
//
// label104
//
resources.ApplyResources(this.label104, "label104");
this.label104.Name = "label104";
- this.toolTip1.SetToolTip(this.label104, resources.GetString("label104.ToolTip"));
//
// label103
//
resources.ApplyResources(this.label103, "label103");
this.label103.Name = "label103";
- this.toolTip1.SetToolTip(this.label103, resources.GetString("label103.ToolTip"));
//
// label102
//
resources.ApplyResources(this.label102, "label102");
this.label102.Name = "label102";
- this.toolTip1.SetToolTip(this.label102, resources.GetString("label102.ToolTip"));
//
// label101
//
resources.ApplyResources(this.label101, "label101");
this.label101.Name = "label101";
- this.toolTip1.SetToolTip(this.label101, resources.GetString("label101.ToolTip"));
//
// CMB_ratestatus
//
- resources.ApplyResources(this.CMB_ratestatus, "CMB_ratestatus");
this.CMB_ratestatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_ratestatus.FormattingEnabled = true;
this.CMB_ratestatus.Items.AddRange(new object[] {
@@ -2102,13 +1715,12 @@
resources.GetString("CMB_ratestatus.Items1"),
resources.GetString("CMB_ratestatus.Items2"),
resources.GetString("CMB_ratestatus.Items3")});
+ resources.ApplyResources(this.CMB_ratestatus, "CMB_ratestatus");
this.CMB_ratestatus.Name = "CMB_ratestatus";
- this.toolTip1.SetToolTip(this.CMB_ratestatus, resources.GetString("CMB_ratestatus.ToolTip"));
this.CMB_ratestatus.SelectedIndexChanged += new System.EventHandler(this.CMB_ratestatus_SelectedIndexChanged);
//
// CMB_rateposition
//
- resources.ApplyResources(this.CMB_rateposition, "CMB_rateposition");
this.CMB_rateposition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_rateposition.FormattingEnabled = true;
this.CMB_rateposition.Items.AddRange(new object[] {
@@ -2116,13 +1728,12 @@
resources.GetString("CMB_rateposition.Items1"),
resources.GetString("CMB_rateposition.Items2"),
resources.GetString("CMB_rateposition.Items3")});
+ resources.ApplyResources(this.CMB_rateposition, "CMB_rateposition");
this.CMB_rateposition.Name = "CMB_rateposition";
- this.toolTip1.SetToolTip(this.CMB_rateposition, resources.GetString("CMB_rateposition.ToolTip"));
this.CMB_rateposition.SelectedIndexChanged += new System.EventHandler(this.CMB_rateposition_SelectedIndexChanged);
//
// CMB_rateattitude
//
- resources.ApplyResources(this.CMB_rateattitude, "CMB_rateattitude");
this.CMB_rateattitude.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_rateattitude.FormattingEnabled = true;
this.CMB_rateattitude.Items.AddRange(new object[] {
@@ -2130,63 +1741,55 @@
resources.GetString("CMB_rateattitude.Items1"),
resources.GetString("CMB_rateattitude.Items2"),
resources.GetString("CMB_rateattitude.Items3")});
+ resources.ApplyResources(this.CMB_rateattitude, "CMB_rateattitude");
this.CMB_rateattitude.Name = "CMB_rateattitude";
- this.toolTip1.SetToolTip(this.CMB_rateattitude, resources.GetString("CMB_rateattitude.ToolTip"));
this.CMB_rateattitude.SelectedIndexChanged += new System.EventHandler(this.CMB_rateattitude_SelectedIndexChanged);
//
// label99
//
resources.ApplyResources(this.label99, "label99");
this.label99.Name = "label99";
- this.toolTip1.SetToolTip(this.label99, resources.GetString("label99.ToolTip"));
//
// label98
//
resources.ApplyResources(this.label98, "label98");
this.label98.Name = "label98";
- this.toolTip1.SetToolTip(this.label98, resources.GetString("label98.ToolTip"));
//
// label97
//
resources.ApplyResources(this.label97, "label97");
this.label97.Name = "label97";
- this.toolTip1.SetToolTip(this.label97, resources.GetString("label97.ToolTip"));
//
// CMB_speedunits
//
- resources.ApplyResources(this.CMB_speedunits, "CMB_speedunits");
this.CMB_speedunits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_speedunits.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_speedunits, "CMB_speedunits");
this.CMB_speedunits.Name = "CMB_speedunits";
- this.toolTip1.SetToolTip(this.CMB_speedunits, resources.GetString("CMB_speedunits.ToolTip"));
this.CMB_speedunits.SelectedIndexChanged += new System.EventHandler(this.CMB_speedunits_SelectedIndexChanged);
//
// CMB_distunits
//
- resources.ApplyResources(this.CMB_distunits, "CMB_distunits");
this.CMB_distunits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_distunits.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_distunits, "CMB_distunits");
this.CMB_distunits.Name = "CMB_distunits";
- this.toolTip1.SetToolTip(this.CMB_distunits, resources.GetString("CMB_distunits.ToolTip"));
this.CMB_distunits.SelectedIndexChanged += new System.EventHandler(this.CMB_distunits_SelectedIndexChanged);
//
// label96
//
resources.ApplyResources(this.label96, "label96");
this.label96.Name = "label96";
- this.toolTip1.SetToolTip(this.label96, resources.GetString("label96.ToolTip"));
//
// label95
//
resources.ApplyResources(this.label95, "label95");
this.label95.Name = "label95";
- this.toolTip1.SetToolTip(this.label95, resources.GetString("label95.ToolTip"));
//
// CHK_speechbattery
//
resources.ApplyResources(this.CHK_speechbattery, "CHK_speechbattery");
this.CHK_speechbattery.Name = "CHK_speechbattery";
- this.toolTip1.SetToolTip(this.CHK_speechbattery, resources.GetString("CHK_speechbattery.ToolTip"));
this.CHK_speechbattery.UseVisualStyleBackColor = true;
this.CHK_speechbattery.CheckedChanged += new System.EventHandler(this.CHK_speechbattery_CheckedChanged);
//
@@ -2194,7 +1797,6 @@
//
resources.ApplyResources(this.CHK_speechcustom, "CHK_speechcustom");
this.CHK_speechcustom.Name = "CHK_speechcustom";
- this.toolTip1.SetToolTip(this.CHK_speechcustom, resources.GetString("CHK_speechcustom.ToolTip"));
this.CHK_speechcustom.UseVisualStyleBackColor = true;
this.CHK_speechcustom.CheckedChanged += new System.EventHandler(this.CHK_speechcustom_CheckedChanged);
//
@@ -2202,7 +1804,6 @@
//
resources.ApplyResources(this.CHK_speechmode, "CHK_speechmode");
this.CHK_speechmode.Name = "CHK_speechmode";
- this.toolTip1.SetToolTip(this.CHK_speechmode, resources.GetString("CHK_speechmode.ToolTip"));
this.CHK_speechmode.UseVisualStyleBackColor = true;
this.CHK_speechmode.CheckedChanged += new System.EventHandler(this.CHK_speechmode_CheckedChanged);
//
@@ -2210,7 +1811,6 @@
//
resources.ApplyResources(this.CHK_speechwaypoint, "CHK_speechwaypoint");
this.CHK_speechwaypoint.Name = "CHK_speechwaypoint";
- this.toolTip1.SetToolTip(this.CHK_speechwaypoint, resources.GetString("CHK_speechwaypoint.ToolTip"));
this.CHK_speechwaypoint.UseVisualStyleBackColor = true;
this.CHK_speechwaypoint.CheckedChanged += new System.EventHandler(this.CHK_speechwaypoint_CheckedChanged);
//
@@ -2218,48 +1818,42 @@
//
resources.ApplyResources(this.label94, "label94");
this.label94.Name = "label94";
- this.toolTip1.SetToolTip(this.label94, resources.GetString("label94.ToolTip"));
//
// CMB_osdcolor
//
- resources.ApplyResources(this.CMB_osdcolor, "CMB_osdcolor");
this.CMB_osdcolor.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.CMB_osdcolor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_osdcolor.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_osdcolor, "CMB_osdcolor");
this.CMB_osdcolor.Name = "CMB_osdcolor";
- this.toolTip1.SetToolTip(this.CMB_osdcolor, resources.GetString("CMB_osdcolor.ToolTip"));
this.CMB_osdcolor.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.CMB_osdcolor_DrawItem);
this.CMB_osdcolor.SelectedIndexChanged += new System.EventHandler(this.CMB_osdcolor_SelectedIndexChanged);
//
// CMB_language
//
- resources.ApplyResources(this.CMB_language, "CMB_language");
this.CMB_language.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_language.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_language, "CMB_language");
this.CMB_language.Name = "CMB_language";
- this.toolTip1.SetToolTip(this.CMB_language, resources.GetString("CMB_language.ToolTip"));
//
// label93
//
resources.ApplyResources(this.label93, "label93");
this.label93.Name = "label93";
- this.toolTip1.SetToolTip(this.label93, resources.GetString("label93.ToolTip"));
//
// CHK_enablespeech
//
resources.ApplyResources(this.CHK_enablespeech, "CHK_enablespeech");
this.CHK_enablespeech.Name = "CHK_enablespeech";
- this.toolTip1.SetToolTip(this.CHK_enablespeech, resources.GetString("CHK_enablespeech.ToolTip"));
this.CHK_enablespeech.UseVisualStyleBackColor = true;
this.CHK_enablespeech.CheckedChanged += new System.EventHandler(this.CHK_enablespeech_CheckedChanged);
//
// CHK_hudshow
//
- resources.ApplyResources(this.CHK_hudshow, "CHK_hudshow");
this.CHK_hudshow.Checked = true;
this.CHK_hudshow.CheckState = System.Windows.Forms.CheckState.Checked;
+ resources.ApplyResources(this.CHK_hudshow, "CHK_hudshow");
this.CHK_hudshow.Name = "CHK_hudshow";
- this.toolTip1.SetToolTip(this.CHK_hudshow, resources.GetString("CHK_hudshow.ToolTip"));
this.CHK_hudshow.UseVisualStyleBackColor = true;
this.CHK_hudshow.CheckedChanged += new System.EventHandler(this.CHK_hudshow_CheckedChanged);
//
@@ -2267,15 +1861,13 @@
//
resources.ApplyResources(this.label92, "label92");
this.label92.Name = "label92";
- this.toolTip1.SetToolTip(this.label92, resources.GetString("label92.ToolTip"));
//
// CMB_videosources
//
- resources.ApplyResources(this.CMB_videosources, "CMB_videosources");
this.CMB_videosources.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_videosources.FormattingEnabled = true;
+ resources.ApplyResources(this.CMB_videosources, "CMB_videosources");
this.CMB_videosources.Name = "CMB_videosources";
- this.toolTip1.SetToolTip(this.CMB_videosources, resources.GetString("CMB_videosources.ToolTip"));
this.CMB_videosources.SelectedIndexChanged += new System.EventHandler(this.CMB_videosources_SelectedIndexChanged);
this.CMB_videosources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.CMB_videosources_MouseClick);
//
@@ -2283,7 +1875,6 @@
//
resources.ApplyResources(this.BUT_Joystick, "BUT_Joystick");
this.BUT_Joystick.Name = "BUT_Joystick";
- this.toolTip1.SetToolTip(this.BUT_Joystick, resources.GetString("BUT_Joystick.ToolTip"));
this.BUT_Joystick.UseVisualStyleBackColor = true;
this.BUT_Joystick.Click += new System.EventHandler(this.BUT_Joystick_Click);
//
@@ -2291,7 +1882,6 @@
//
resources.ApplyResources(this.BUT_videostop, "BUT_videostop");
this.BUT_videostop.Name = "BUT_videostop";
- this.toolTip1.SetToolTip(this.BUT_videostop, resources.GetString("BUT_videostop.ToolTip"));
this.BUT_videostop.UseVisualStyleBackColor = true;
this.BUT_videostop.Click += new System.EventHandler(this.BUT_videostop_Click);
//
@@ -2299,7 +1889,6 @@
//
resources.ApplyResources(this.BUT_videostart, "BUT_videostart");
this.BUT_videostart.Name = "BUT_videostart";
- this.toolTip1.SetToolTip(this.BUT_videostart, resources.GetString("BUT_videostart.ToolTip"));
this.BUT_videostart.UseVisualStyleBackColor = true;
this.BUT_videostart.Click += new System.EventHandler(this.BUT_videostart_Click);
//
@@ -2307,14 +1896,12 @@
//
resources.ApplyResources(this.TabSetup, "TabSetup");
this.TabSetup.Name = "TabSetup";
- this.toolTip1.SetToolTip(this.TabSetup, resources.GetString("TabSetup.ToolTip"));
this.TabSetup.UseVisualStyleBackColor = true;
//
// label109
//
resources.ApplyResources(this.label109, "label109");
this.label109.Name = "label109";
- this.toolTip1.SetToolTip(this.label109, resources.GetString("label109.ToolTip"));
//
// BUT_rerequestparams
//
@@ -2352,10 +1939,93 @@
//
resources.ApplyResources(this.BUT_compare, "BUT_compare");
this.BUT_compare.Name = "BUT_compare";
- this.toolTip1.SetToolTip(this.BUT_compare, resources.GetString("BUT_compare.ToolTip"));
this.BUT_compare.UseVisualStyleBackColor = true;
this.BUT_compare.Click += new System.EventHandler(this.BUT_compare_Click);
//
+ // groupBox17
+ //
+ this.groupBox17.Controls.Add(this.ACRO_PIT_IMAX);
+ this.groupBox17.Controls.Add(this.label27);
+ this.groupBox17.Controls.Add(this.ACRO_PIT_I);
+ this.groupBox17.Controls.Add(this.label29);
+ this.groupBox17.Controls.Add(this.ACRO_PIT_P);
+ this.groupBox17.Controls.Add(this.label33);
+ resources.ApplyResources(this.groupBox17, "groupBox17");
+ this.groupBox17.Name = "groupBox17";
+ this.groupBox17.TabStop = false;
+ //
+ // ACRO_PIT_IMAX
+ //
+ resources.ApplyResources(this.ACRO_PIT_IMAX, "ACRO_PIT_IMAX");
+ this.ACRO_PIT_IMAX.Name = "ACRO_PIT_IMAX";
+ //
+ // label27
+ //
+ resources.ApplyResources(this.label27, "label27");
+ this.label27.Name = "label27";
+ //
+ // ACRO_PIT_I
+ //
+ resources.ApplyResources(this.ACRO_PIT_I, "ACRO_PIT_I");
+ this.ACRO_PIT_I.Name = "ACRO_PIT_I";
+ //
+ // label29
+ //
+ resources.ApplyResources(this.label29, "label29");
+ this.label29.Name = "label29";
+ //
+ // ACRO_PIT_P
+ //
+ resources.ApplyResources(this.ACRO_PIT_P, "ACRO_PIT_P");
+ this.ACRO_PIT_P.Name = "ACRO_PIT_P";
+ //
+ // label33
+ //
+ resources.ApplyResources(this.label33, "label33");
+ this.label33.Name = "label33";
+ //
+ // groupBox18
+ //
+ this.groupBox18.Controls.Add(this.ACRO_RLL_IMAX);
+ this.groupBox18.Controls.Add(this.label40);
+ this.groupBox18.Controls.Add(this.ACRO_RLL_I);
+ this.groupBox18.Controls.Add(this.label44);
+ this.groupBox18.Controls.Add(this.ACRO_RLL_P);
+ this.groupBox18.Controls.Add(this.label48);
+ resources.ApplyResources(this.groupBox18, "groupBox18");
+ this.groupBox18.Name = "groupBox18";
+ this.groupBox18.TabStop = false;
+ //
+ // ACRO_RLL_IMAX
+ //
+ resources.ApplyResources(this.ACRO_RLL_IMAX, "ACRO_RLL_IMAX");
+ this.ACRO_RLL_IMAX.Name = "ACRO_RLL_IMAX";
+ //
+ // label40
+ //
+ resources.ApplyResources(this.label40, "label40");
+ this.label40.Name = "label40";
+ //
+ // ACRO_RLL_I
+ //
+ resources.ApplyResources(this.ACRO_RLL_I, "ACRO_RLL_I");
+ this.ACRO_RLL_I.Name = "ACRO_RLL_I";
+ //
+ // label44
+ //
+ resources.ApplyResources(this.label44, "label44");
+ this.label44.Name = "label44";
+ //
+ // ACRO_RLL_P
+ //
+ resources.ApplyResources(this.ACRO_RLL_P, "ACRO_RLL_P");
+ this.ACRO_RLL_P.Name = "ACRO_RLL_P";
+ //
+ // label48
+ //
+ resources.ApplyResources(this.label48, "label48");
+ this.label48.Name = "label48";
+ //
// Configuration
//
resources.ApplyResources(this, "$this");
@@ -2369,125 +2039,39 @@
this.Controls.Add(this.BUT_load);
this.Controls.Add(this.Params);
this.Name = "Configuration";
- this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.Load += new System.EventHandler(this.Configuration_Load);
((System.ComponentModel.ISupportInitialize)(this.Params)).EndInit();
this.ConfigTabs.ResumeLayout(false);
this.TabAPM2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.THR_FS_VALUE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_MIN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.TRIM_THROTTLE)).EndInit();
this.groupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_RATIO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_FBW_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSPD_FBW_MIN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.TRIM_ARSPD_CM)).EndInit();
this.groupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.LIM_PITCH_MIN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.LIM_PITCH_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.LIM_ROLL_CD)).EndInit();
this.groupBox15.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_ANGLE_CD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_GAIN_SC)).EndInit();
this.groupBox16.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.KFF_PTCH2THR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.KFF_RDDRMIX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.KFF_PTCHCOMP)).EndInit();
this.groupBox14.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ENRGY2THR_P)).EndInit();
this.groupBox13.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ALT2PTCH_P)).EndInit();
this.groupBox12.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ARSP2PTCH_P)).EndInit();
this.groupBox11.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.HDNG2RLL_P)).EndInit();
this.groupBox10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.YW2SRV_P)).EndInit();
this.groupBox9.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.PTCH2SRV_P)).EndInit();
this.groupBox8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_D)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RLL2SRV_P)).EndInit();
this.TabAC2.ResumeLayout(false);
this.TabAC2.PerformLayout();
- this.groupBox17.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_PIT_P)).EndInit();
this.groupBox5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_RATE_P)).EndInit();
- this.groupBox18.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ACRO_RLL_P)).EndInit();
this.groupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.WP_SPEED_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.NAV_LAT_P)).EndInit();
this.groupBox6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.XTRK_ANGLE_CD1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.XTRACK_P)).EndInit();
this.groupBox7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.THR_ALT_P)).EndInit();
this.groupBox19.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.HLD_LAT_P)).EndInit();
this.groupBox20.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_YAW_P)).EndInit();
this.groupBox21.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_PIT_P)).EndInit();
this.groupBox22.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.STB_RLL_P)).EndInit();
this.groupBox23.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_YAW_P)).EndInit();
this.groupBox24.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_PIT_P)).EndInit();
this.groupBox25.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_IMAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_I)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.RATE_RLL_P)).EndInit();
this.TabPlanner.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.NUM_tracklength)).EndInit();
+ this.groupBox17.ResumeLayout(false);
+ this.groupBox18.ResumeLayout(false);
this.ResumeLayout(false);
}
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
index 7b9725cee3..c5e12aff50 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
@@ -117,2843 +117,5340 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- THR_FS_VALUE
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Top, Bottom, Left
-
- 29
+
+ True
-
- groupBox14
+
+ Command
-
-
- 722, 434
+
+ 150
-
- label50
+
+ True
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Value
-
- P
+
+ 80
-
- ConfigTabs
+
+ True
-
- groupBox10
-
-
- I
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- INT_MAX
-
-
- 78, 20
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 1
-
-
- 390, 11
-
-
-
-
-
- RATE_YAW_IMAX
-
-
- label22
-
-
- label51
-
-
- groupBox15
-
-
- 5
-
-
- 6, 16
-
-
- Setup
-
-
- 3
-
-
- 61, 13
-
-
- INT_MAX
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 170, 91
-
-
-
-
-
-
-
-
- RATE_RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 87
-
-
-
-
-
- XTRK_ANGLE_CD1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
-
- NoControl
-
-
- label56
-
-
- 111, 59
-
-
- groupBox16
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- THR_RATE_P
-
-
- 80, 63
-
-
- 5
-
-
- 27, 244
-
-
- 13
-
-
- groupBox21
-
-
-
-
-
- groupBox5
-
-
- 69, 13
-
-
- 80, 13
-
-
- label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- WP_SPEED_MAX
-
-
- GDI+ (old type)
-
-
- groupBox24
-
-
-
-
-
- label57
-
-
-
-
-
- 111, 36
-
-
- 7
-
-
- 65, 13
-
-
- P
-
-
+
Default
-
- groupBox8
-
-
- NoControl
-
-
- 3, 416
-
-
- 22, 13
-
-
- label29
-
-
- 3, 3, 3, 3
-
-
- groupBox24
-
-
- 80, 21
-
-
- IMAX
-
-
- P
-
-
- INT_MAX
-
-
- I
-
-
- 136, 244
-
-
- Dist Units
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 80, 37
-
-
- 6, 221
-
-
- NoControl
-
-
- 722, 434
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPlanner
-
-
- NoControl
-
-
- 408, 21
-
-
- groupBox18
-
-
- FBW max
-
-
- 65, 13
-
-
- CHK_hudshow
-
-
- 78, 20
-
-
- groupBox12
-
-
- STB_PIT_I
-
-
- 15
-
-
- 3
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 9
-
-
- groupBox5
-
-
- label52
-
-
- 80, 13
-
-
- 78, 20
-
-
- label102
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- YW2SRV_IMAX
-
-
- 4, 109
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 78, 20
-
-
- 78, 20
-
-
- 5
-
-
- 11
-
-
- 40
-
-
- 111, 36
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- 16
-
-
- groupBox7
-
-
-
-
-
- TabPlanner
-
-
- 78, 20
-
-
- 65, 13
-
-
- label53
-
-
- RATE_PIT_IMAX
-
-
- 531, 6
-
-
- groupBox23
-
-
- 0
-
-
- 0
-
-
- 4
-
-
- 2
-
-
- label94
-
-
- 7
-
-
- 6
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 43, 13
-
-
- label58
-
-
- TabAC2
-
-
- 11
-
-
- ACRO_RLL_P
-
-
- UI Language
-
-
- groupBox1
-
-
- groupBox16
-
-
-
-
-
-
-
-
- NAV_LAT_I
-
-
- 111, 13
-
-
- 205, 1
-
-
- 1
-
-
- label95
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 730, 460
-
-
- 7
-
-
- groupBox17
-
-
- label59
-
-
- TabAPM2
-
-
- label24
-
-
- NoControl
-
-
- 0
-
-
- 111, 36
-
-
-
-
-
- groupBox25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
False
-
+
+ mavScale
+
+
+ False
+
+
+ True
+
+
+ RawValue
+
+
+ False
+
+
+
+ 3, 3
+
+
+ 150
+
+
+ 269, 409
+
+
+ 58
+
+
+ Params
+
+
+ System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
6
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Top, Bottom, Left, Right
-
- groupBox22
+
+ 111, 82
-
+
+ 78, 20
+
+
+ 11
+
+
+ THR_FS_VALUE
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
0
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ NoControl
-
+
+ 6, 86
+
+
+ 50, 13
+
+
+ 12
+
+
+ FS Value
+
+
+ label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 1
+
+
+ 111, 59
+
+
78, 20
-
- HDNG2RLL_P
+
+ 9
-
+
+ THR_MAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 27, 13
+
+
+ 13
+
+
+ Max
+
+
+ label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 3
+
+
+ 111, 36
+
+
78, 20
+
+ 7
+
+
+ THR_MIN
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 24, 13
+
+
+ 14
+
+
+ Min
+
+
+ label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ TRIM_THROTTLE
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 36, 13
+
+
+ 15
+
+
+ Cruise
+
+
+ label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 7
+
+
+ 405, 217
+
+
+ 195, 108
+
+
+ 0
+
+
+ Throttle 0-100%
+
+
+ groupBox3
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 0
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ARSPD_RATIO
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 87
+
+
+ 32, 13
+
+
+ 1
+
+
+ Ratio
+
+
+ label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ARSPD_FBW_MAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 59
+
+
+ 53, 13
+
+
+ 3
+
+
+ FBW max
+
+
+ label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ARSPD_FBW_MIN
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 50, 13
+
+
+ 5
+
+
+ FBW min
+
+
+ label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ TRIM_ARSPD_CM
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 64, 13
+
+
+ 6
+
+
+ Cruise
+
+
+ label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 7
+
+
+ 406, 325
+
+
+ 195, 108
+
+
+ 1
+
+
+ Airspeed m/s
+
+
+ groupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ LIM_PITCH_MIN
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 51, 13
+
+
+ 10
+
+
+ Pitch Min
+
+
+ label39
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 1
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ LIM_PITCH_MAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 54, 13
+
+
+ 11
+
+
+ Pitch Max
+
+
+ label38
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 3
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ LIM_ROLL_CD
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 55, 13
+
+
+ 12
+
+
+ Bank Max
+
+
+ label37
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 5
+
+
+ 205, 325
+
+
+ 195, 108
+
+
+ 2
+
+
+ Navigation Angles
+
+
+ groupBox2
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 2
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ XTRK_ANGLE_CD
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 61, 13
+
+
+ 8
+
+
+ Entry Angle
+
+
+ label79
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 1
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ XTRK_GAIN_SC
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 52, 13
+
+
+ 9
+
+
+ Gain (cm)
+
+
+ label80
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 3
+
+
+ 4, 325
+
+
+ 195, 108
+
+
+ 3
+
+
+ Xtrack Pids
+
+
+ groupBox15
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 3
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 13
+
+
+ KFF_PTCH2THR
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 36, 13
+
+
+ 14
+
+
+ P to T
+
+
+ label83
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ KFF_RDDRMIX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 61, 13
+
+
+ 15
+
+
+ Rudder Mix
+
+
+ label78
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ KFF_PTCHCOMP
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 61, 13
+
+
+ 16
+
+
+ Pitch Comp
+
+
+ label81
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 5
+
+
+ 205, 217
+
+
+ 195, 108
+
+
+ 4
+
+
+ Other Mix's
+
+
+ groupBox16
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 4
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ ENRGY2THR_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label73
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ ENRGY2THR_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label74
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ ENRGY2THR_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label75
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ ENRGY2THR_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label76
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 7
+
+
+ 4, 217
+
+
+ 195, 108
+
+
+ 5
+
+
+ Energy/Alt Pid
+
+
+ groupBox14
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 5
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ALT2PTCH_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 0
+
NoControl
-
- 11
+
+ 6, 86
-
+
+ 54, 13
+
+
+ 1
+
+
+ INT_MAX
+
+
+ label69
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ALT2PTCH_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 2
+
+
NoControl
-
- groupBox17
+
+ 6, 63
-
- 139, 340
+
+ 15, 13
-
- 170, 91
+
+ 3
-
- 25
+
+ D
-
-
+
+ label70
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 154, 17
+
+ groupBox13
-
-
+
+ 3
-
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ALT2PTCH_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label71
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ALT2PTCH_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label72
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 7
+
+
+ 406, 109
+
+
+ 195, 108
+
+
+ 6
+
+
+ Nav Pitch Alt Pid
+
+
+ groupBox13
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 6
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ARSP2PTCH_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 1
+
+
+ INT_MAX
+
+
+ label65
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ARSP2PTCH_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 3
+
+
+ D
+
+
+ label66
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ARSP2PTCH_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label67
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ARSP2PTCH_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label68
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 7
+
+
+ 205, 109
+
+
+ 195, 108
+
+
+ 7
+
+
+ Nav Pitch AS Pid
+
+
+ groupBox12
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 7
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ HDNG2RLL_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label61
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ HDNG2RLL_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label62
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ HDNG2RLL_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label63
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ HDNG2RLL_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label64
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 7
+
+
+ 4, 109
+
+
+ 195, 108
+
+
+ 8
+
+
+ Nav Roll Pid
+
+
+ groupBox11
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 8
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ YW2SRV_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label57
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ YW2SRV_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label58
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ YW2SRV_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label59
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ YW2SRV_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label60
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 7
+
+
+ 406, 1
+
+
+ 195, 108
+
+
+ 9
+
+
+ Servo Yaw Pid
+
+
+ groupBox10
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 9
+
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ PTCH2SRV_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label53
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ PTCH2SRV_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label54
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
groupBox9
-
- TabPlanner
+
+ 3
-
+
+ 111, 36
+
+
78, 20
-
-
-
-
- 103, 19
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
- NoControl
-
-
- groupBox20
-
-
- label3
-
-
-
-
-
-
-
-
- label90
-
-
-
-
-
- 111, 13
-
-
- NoControl
-
-
- TabPlanner
-
-
- label46
-
-
- 2
-
-
+
7
-
- Write changed params to device
+
+ PTCH2SRV_I
-
- 78, 20
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ groupBox9
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label55
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 12
-
groupBox9
-
- groupBox7
-
-
- NoControl
-
-
- Bottom, Left
-
-
-
-
-
-
-
-
- 12
-
-
- label91
-
-
- ENRGY2THR_P
-
-
- 65, 13
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 66
-
-
- 80, 37
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- CHK_GDIPlus
-
-
- 4
-
-
- label7
-
-
- 78, 20
-
-
-
-
-
- 11
-
-
-
-
-
- 56, 17
-
-
- groupBox12
-
-
- 4
-
-
- label96
-
-
- TabPlanner
-
-
- 6, 40
-
-
- 6
-
-
- NoControl
-
-
- 0, 0, 0, 0
-
-
- 14
-
-
- 16
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- TabPlanner
-
-
- groupBox17
-
-
- 111, 36
-
-
- groupBox19
-
-
- 18
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 78, 20
-
-
- 177, 17
-
-
- HLD_LAT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 138, 21
-
-
+
5
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
-
-
-
- 5
-
-
- 15
-
-
- groupBox10
-
-
- groupBox8
-
-
- TabPlanner
-
-
- 7
-
-
- 4
-
-
- 52, 13
-
-
- 5
-
-
- 15, 13
-
-
- NoControl
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 182, 6
-
-
- NoControl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
-
- groupBox8
-
-
- 1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 10, 13
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Cruise
-
-
-
-
-
- groupBox25
-
-
- 3
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 111, 59
-
-
- 3
-
-
- 87, 17
-
-
- 10
-
-
- toolTip1
-
-
- 111, 82
-
-
- IMAX
-
-
- 6, 63
-
-
- groupBox9
-
-
- groupBox9
-
-
- 111, 36
-
-
- RLL2SRV_IMAX
-
-
- 12
-
-
- ARSP2PTCH_P
-
-
- 27
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 80, 86
-
-
- 5
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 5
-
-
- 27, 13
-
-
- Nav Pitch AS Pid
-
-
- 245, 107
-
-
- 590, 244
-
-
- label93
-
-
- 80, 63
-
-
- groupBox12
-
-
- RLL2SRV_I
-
-
- label101
-
-
- 11
-
-
- CHK_mavdebug
-
-
- 78, 20
-
-
- 139, 317
-
-
- 7
-
-
- 78, 20
-
-
- CMB_rateposition
-
-
- 6, 16
-
-
- 4
-
-
- 5
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 20
-
-
- CMB_ratestatus
-
-
- 39
-
-
- groupBox17
-
-
- 5
-
-
- 10, 13
-
-
- CHK_speechwaypoint
-
-
-
-
-
- 0
-
-
- CHK_speechaltwarning
-
-
-
-
-
- NoControl
-
-
- 14, 13
-
-
- NUM_tracklength
-
-
- BUT_Joystick
-
-
- label23
-
-
- TabAC2
-
-
- 6, 17
-
-
-
-
-
- 65, 13
-
-
- 579, 107
-
-
- IMAX
-
-
- 139, 158
-
-
- 78, 20
-
-
- 2
-
-
- I
-
-
-
-
-
- 68, 13
-
-
- 80, 13
-
-
- groupBox18
-
-
- groupBox8
-
-
- 0
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 9
-
-
- 0
-
-
- NoControl
-
-
- label107
-
-
- 61, 13
-
-
- groupBox3
-
-
-
-
-
-
-
-
- NoControl
-
-
- Energy/Alt Pid
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
-
-
-
-
-
-
- 78, 20
-
-
- Load
-
-
- groupBox9
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- 3
-
-
- 111, 82
-
-
- 195, 108
-
-
-
-
-
- 0
-
-
- 358, 6
-
-
- 0
-
-
-
-
-
- Enable HUD Overlay
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 205, 217
-
-
- 0
-
-
- ENRGY2THR_D
-
-
- 15
-
-
-
-
-
-
-
-
- groupBox10
-
-
- 6, 86
-
-
- 80, 37
-
-
- NAV_LAT_P
-
-
-
-
-
-
-
-
- 139, 131
-
-
- groupBox23
-
-
- 722, 434
-
-
- 50, 13
-
-
- 78, 20
-
-
- label64
-
-
- 30, 162
-
-
- System.Windows.Forms.ToolTip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
-
-
-
- 65, 13
-
-
- TabAC2
-
-
- 14, 13
-
-
-
-
-
- 14, 13
-
-
- 0
-
-
- Enable Speech
-
-
- P to T
-
-
- groupBox10
-
-
- 78, 20
-
-
- groupBox3
-
-
- 334, 240
-
-
-
-
-
- BUT_writePIDS
-
-
- Save params to file
-
-
- 78, 20
-
-
- label65
-
-
-
-
-
+
111, 13
-
- 10, 13
-
-
-
-
-
- 3
-
-
- Reload params from device
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Waypoint
-
-
- 0
-
-
- 80, 37
-
-
- 7
-
-
- 7
-
-
- 75, 23
-
-
- 80, 21
-
-
- 6, 16
-
-
- 5
-
-
- 111, 13
-
-
- 30
-
-
-
-
-
- 103, 19
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 0
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 195, 108
-
-
+
78, 20
-
-
-
-
- TabPlanner
-
-
- 24
-
-
- NoControl
-
-
- IMAX
-
-
- 406, 325
-
-
- P
-
-
-
-
-
- 6
-
-
- IMAX
-
-
- P
-
5
-
- TabAPM2
+
+ PTCH2SRV_P
-
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 6
+
+
NoControl
-
- P
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14, 13
-
-
- 4, 22
-
-
- NoControl
-
-
- label60
-
-
- 170, 95
-
-
- 14, 13
-
-
- 139, 187
-
-
- TabAPM2
-
-
- 78, 20
-
-
- 2
-
-
- TabPlanner
-
-
- 10
-
-
- 5
-
-
-
-
-
- 3
-
-
- label61
-
-
- 20
-
-
- IMAX
-
-
- I
-
-
-
-
-
- 150
-
-
- D
-
-
- RATE_YAW_I
-
-
- 8
-
-
- 3
-
-
- groupBox21
-
-
- Stabilize Roll
-
6, 17
-
- 4, 22
+
+ 14, 13
-
- True
+
+ 15
-
- 78, 20
+
+ P
-
-
+
+ label56
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 30, 50
+
+ groupBox9
-
- 5
+
+ 7
-
- HDNG2RLL_D
+
+ 205, 1
-
- 111, 59
+
+ 195, 108
-
- NoControl
+
+ 10
-
- 14
+
+ Servo Pitch Pid
-
- 10, 13
+
+ groupBox9
-
- NoControl
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 2
+
+ TabAPM2
-
- 205, 109
-
-
- 5
-
-
- 139, 80
-
-
- 11
-
-
- 5
-
-
-
-
-
- 3, 198
-
-
- NoControl
-
-
- IMAX
-
-
- NoControl
-
-
- 1
+
+ 10
111, 82
-
- groupBox6
+
+ 78, 20
-
- 44, 13
+
+ 11
-
- APM 2.x
+
+ RLL2SRV_IMAX
-
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label49
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ RLL2SRV_D
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label50
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ RLL2SRV_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 4
+
+
+ NoControl
+
+
6, 40
-
- label67
+
+ 10, 13
-
- P
+
+ 14
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ I
-
+
+ label51
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ RLL2SRV_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
15
P
-
- P
+
+ label52
-
- 1
-
-
- P
-
-
- 195, 108
-
-
- 12
-
-
- 78, 20
-
-
- 5
-
-
- 15
-
-
- THR_ALT_I
-
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 6, 17
+
+ groupBox8
-
- 2
-
-
- TRIM_THROTTLE
-
-
- groupBox4
-
-
- $this
-
-
- I
-
-
- groupBox6
-
-
- 10, 13
-
-
- 6, 17
-
-
- groupBox21
-
-
- 58
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- 4
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 195, 108
-
-
-
-
-
- 111, 13
-
-
- 195, 108
-
-
- TabAC2
-
-
- NoControl
-
-
- D
-
-
- 1
-
-
- groupBox4
-
-
- 6, 17
-
-
-
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 80
-
-
-
-
-
- 6, 64
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 15, 13
-
-
- 6, 17
-
-
- 65, 13
-
-
-
-
-
-
-
-
- groupBox18
-
-
- 9
-
-
- 2
-
-
- 30, 269
-
-
- groupBox14
-
-
- 195, 108
-
-
- 6, 66
-
-
- 78, 20
-
-
- label99
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 80, 37
-
-
- TabPlanner
-
-
- 10, 13
-
-
- label27
-
-
- 170, 108
-
-
- 78, 20
-
-
- 4
-
-
- 24
-
-
- 14
-
-
+
7
-
- 5
+
+ 4, 1
-
- NoControl
+
+ 195, 108
-
- Rudder Mix
-
-
- XTRK_GAIN_SC
-
-
-
-
-
- NoControl
-
-
- Video Device
-
-
- 4
-
-
- 14
-
-
- TabPlanner
-
-
- 75, 23
-
-
- TabAPM2
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 10
-
-
- 170, 110
-
-
- 1
-
-
- INT_MAX
-
-
- 10, 13
-
-
- label68
-
-
- 6, 40
-
-
- 188, 240
-
-
- ENRGY2THR_I
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- STB_PIT_P
-
-
- 283, 209
-
-
- NoControl
-
-
- 6
-
-
- ARSP2PTCH_D
-
-
- groupBox5
-
-
- 6, 40
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- HLD_LAT_P
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- 30
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAPM2
-
-
- 170, 110
-
-
- 61, 13
-
-
- 44, 13
-
-
- label69
-
-
- groupBox7
-
-
- 6, 66
-
-
- 182, 337
-
-
- groupBox5
-
-
- 15, 13
-
-
- NoControl
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- NoControl
-
-
-
-
-
-
-
-
- THR_MIN
-
-
- 65
-
-
- 170, 110
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 78, 20
-
-
-
-
-
-
-
-
- 6, 66
-
-
- 4
-
-
- Command
-
-
- 5
-
-
- 13
-
-
- groupBox11
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- 6, 16
-
-
- 80, 37
-
-
- 4
-
-
- 6
-
-
- TabAPM2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- NoControl
-
-
- 5
-
-
- 0, 0
-
-
+
11
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- 34
-
-
- 0
-
-
- groupBox5
-
-
- 111, 36
-
-
- groupBox23
-
-
- groupBox6
-
-
- 4
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 15, 13
-
-
- ConfigTabs
-
-
- 2
-
-
-
-
-
- TabAC2
-
-
- 4
-
-
- Top, Bottom, Left, Right
-
-
- Ratio
-
-
- 11
-
-
- groupBox16
-
-
- 65, 13
+
+ Servo Roll Pid
groupBox8
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAPM2
+
+
+ 11
+
+
+ 4, 22
+
+
+ 0, 0, 0, 0
+
+
+ 722, 434
+
+
+ 0
+
+
+ APM 2.x
+
+
+ TabAPM2
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ConfigTabs
+
+
+ 0
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 0
+
+
+ ACRO_PIT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label27
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ ACRO_PIT_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label29
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ACRO_PIT_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label33
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox17
+
+
+ 5
+
+
+ 182, 337
+
+
+ 170, 91
+
+
+ 13
+
+
+ Acro Pitch
+
+
+ groupBox17
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 16
+
+
+ IMAX
+
+
+ label14
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 0
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ THR_RATE_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ THR_RATE_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ THR_RATE_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 5
+
+
+ 6, 221
+
+
+ 170, 110
+
+
+ 16
+
+
+ Throttle Rate
+
+
+ groupBox5
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
1
-
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 0
+
+
+ ACRO_RLL_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 68, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label40
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ ACRO_RLL_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label44
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ACRO_RLL_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label48
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox18
+
+
+ 5
+
+
+ 6, 337
+
+
+ 170, 91
+
+
+ 14
+
+
+ Acro Roll
+
+
+ groupBox18
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 2
+
+
+ True
+
+
+ 3, 198
+
+
+ 154, 17
+
+
+ 13
+
+
+ Lock Pitch and Roll Values
+
+
+ CHK_lockrollpitch
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 3
+
+
+ 80, 86
+
+
+ 78, 20
+
+
+ 16
+
+
+ WP_SPEED_MAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 89
+
+
+ 54, 13
+
+
+ 17
+
+
+ m/s
+
+
+ label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 1
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ NAV_LAT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ NAV_LAT_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label15
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ NAV_LAT_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 7
+
+
+ 534, 107
+
+
+ 170, 108
+
+
+ 0
+
+
+ Nav WP
+
+
+ groupBox4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 4
+
+
+ 80, 86
+
+
+ 78, 20
+
+
+ 18
+
+
+ XTRK_ANGLE_CD1
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 89
+
+
+ 82, 13
+
+
+ 19
+
+
+ Error Max
+
+
+ label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 1
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ XTRACK_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label11
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ XTRACK_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ XTRACK_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 7
+
+
+ 358, 221
+
+
+ 170, 110
+
+
+ 2
+
+
+ Crosstrack Correction
+
+
+ groupBox6
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 5
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ THR_ALT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label19
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
groupBox7
-
- ConfigTabs
+
+ 1
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 80, 37
-
- ALT2PTCH_I
-
-
-
-
-
-
-
-
- 4
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 28
-
-
- NoControl
-
-
-
-
-
- 14, 13
-
-
-
-
-
-
-
-
- 102, 17
-
-
- ARSP2PTCH_I
-
-
- groupBox1
-
-
- 15
-
-
- 11
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 278, 0
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 6, 40
-
-
- 6, 40
-
-
- NoControl
-
-
- 111, 36
-
-
-
-
-
- THR_ALT_IMAX
-
-
- 12
-
-
- 6, 40
-
-
- 7
-
-
- 3
-
-
-
-
-
- NoControl
-
-
- 14
-
-
- 33
-
-
- 15
-
-
- 6, 16
-
-
-
-
-
- TabAPM2
-
-
- Track Length
-
-
- 80, 13
-
-
- 3
-
-
- CMB_distunits
-
-
- groupBox14
-
-
- label4
-
-
- groupBox15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 31
+
+ 78, 20
7
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ THR_ALT_I
-
- 14, 13
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- NoControl
+
+ groupBox7
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- groupBox13
-
-
- label2
-
-
- 12
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- YW2SRV_I
-
-
- 6, 66
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 12
-
-
- 15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 402, 13
-
-
+
2
-
- Max
+
+ NoControl
-
- Min
+
+ 6, 40
-
- label6
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 63
-
-
- 61, 13
-
-
- 111, 82
-
-
- P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 32
-
-
- label8
-
-
- groupBox19
-
-
- 30, 318
-
-
- 125, 17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 78, 20
-
-
- 14, 13
-
-
- 80, 63
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- groupBox13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 7
-
-
- 30, 189
-
-
-
-
-
- 111, 59
-
-
- groupBox1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 22
-
-
- 2
-
-
+
10, 13
-
-
+
+ 14
-
- Nav Pitch Alt Pid
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 0
-
-
- groupBox21
-
-
- 2
-
-
+
I
-
- 6, 66
+
+ label21
-
- Servo Roll Pid
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 12
+
+ groupBox7
-
- RLL2SRV_P
+
+ 3
-
- 12
+
+ 80, 13
-
- ACRO_PIT_I
+
+ 78, 20
-
- 30, 16
+
+ 5
-
- YW2SRV_D
+
+ THR_ALT_P
-
- 7
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label22
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 5
+
+
+ 182, 221
+
+
+ 170, 110
+
+
+ 3
+
+
+ Altitude Hold
groupBox7
-
- 0
-
-
- 80, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 78, 20
-
-
- 11
-
-
- mavScale
-
-
- NoControl
-
-
-
-
-
- NoControl
-
-
- Servo Pitch Pid
-
-
- TabPlanner
-
-
- Start
-
-
- label44
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 13
-
-
- 9
-
-
- Bottom, Left
-
-
- 1
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PTCH2SRV_D
-
-
-
-
-
- m/s
-
-
- 195, 108
-
-
- P
-
-
- Telemetry Rates
-
-
- label45
-
-
- 6, 63
-
-
- groupBox15
-
-
- 111, 82
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- I
-
-
-
-
-
- 78, 20
-
-
- TabPlanner
-
-
- 1
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- NoControl
-
-
- groupBox4
-
-
- 18
-
-
- 78, 20
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 30, 217
-
-
- 15
-
-
- HDNG2RLL_IMAX
-
-
- 6, 66
-
-
- NoControl
-
-
- 78, 20
-
-
- 10, 13
-
-
-
-
-
- Nav Roll Pid
-
-
- 3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- IMAX
-
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
+ TabAC2
-
- STB_PIT_IMAX
-
-
- 5
-
-
- 30, 135
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- label97
-
-
-
-
-
+
6
-
- 80, 37
+
+ 80, 61
-
-
-
-
- 10, 13
-
-
- 25
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Stabilize Pitch
-
-
- 6, 86
-
-
+
78, 20
-
- ENRGY2THR_IMAX
+
+ 11
-
+
+ HLD_LAT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 64
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label28
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 31
+
+ groupBox19
-
- TabPlanner
+
+ 1
-
- groupBox4
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ HLD_LAT_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label30
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ HLD_LAT_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label31
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 5
+
+
+ 531, 6
+
+
+ 170, 95
+
+
+ 6
+
+
+ Loiter
+
+
+ groupBox19
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 7
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ STB_YAW_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label32
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_YAW_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
groupBox20
-
- label40
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label34
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_YAW_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label35
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 5
+
+
+ 358, 6
+
+
+ 170, 95
+
+
+ 7
+
+
+ Stabilize Yaw
+
+
+ groupBox20
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 8
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ STB_PIT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label36
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_PIT_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label41
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_PIT_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label42
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 5
+
+
+ 182, 6
+
+
+ 170, 95
+
+
+ 8
+
+
+ Stabilize Pitch
+
+
+ groupBox21
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 9
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ STB_RLL_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label43
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_RLL_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label45
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_RLL_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label46
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 5
+
+
+ 6, 6
+
+
+ 170, 95
+
+
+ 9
+
+
+ Stabilize Roll
+
+
+ groupBox22
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 10
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_YAW_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label47
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_YAW_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label77
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_YAW_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label82
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 5
+
+
+ 358, 107
+
+
+ 170, 91
+
+
+ 10
+
+
+ Rate Yaw
+
+
+ groupBox23
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 11
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_PIT_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label84
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_PIT_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label86
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_PIT_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label87
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 5
+
+
+ 182, 107
+
+
+ 170, 91
+
+
+ 11
+
+
+ Rate Pitch
+
+
+ groupBox24
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 12
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_RLL_IMAX
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 68, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label88
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_RLL_I
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label90
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_RLL_P
+
+
+ System.Windows.Forms.DomainUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label91
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 5
+
+
+ 6, 107
+
+
+ 170, 91
+
+
+ 12
+
+
+ Rate Roll
+
+
+ groupBox25
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabAC2
+
+
+ 13
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 722, 434
+
+
+ 1
+
+
+ AC2
+
+
+ TabAC2
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ConfigTabs
+
+
+ 1
+
+
+ NoControl
+
+
+ 30, 50
+
+
+ 100, 23
+
+
+ 41
+
+
+ Video Format
+
+
+ label26
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 0
+
+
+ 139, 47
+
+
+ 408, 21
+
+
+ 0
+
+
+ CMB_videoresolutions
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 1
+
+
+ NoControl
+
+
+ 30, 340
+
+
+ 61, 13
+
+
+ 39
+
+
+ HUD
+
+
+ label12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 2
+
+
+ NoControl
+
+
+ 139, 340
+
+
+ 177, 17
+
+
+ 40
+
+
+ GDI+ (old type)
+
+
+ 17, 17
+
+
+ OpenGL = Disabled
+GDI+ = Enabled
+
+
+ CHK_GDIPlus
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 3
+
+
+ NoControl
+
+
+ 30, 318
+
+
+ 61, 13
+
+
+ 37
+
+
+ Waypoints
+
+
+ label24
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 4
+
+
+ NoControl
+
+
+ 139, 317
+
+
+ 177, 17
+
+
+ 38
+
+
+ Load Waypoints on connect?
+
+
+ CHK_loadwponconnect
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 5
+
+
+ NoControl
+
+
+ 30, 292
+
+
+ 103, 18
+
+
+ 36
+
+
+ Track Length
+
+
+ label23
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 6
+
+
+ 139, 291
+
+
+ 67, 20
+
+
+ 35
+
+
+ On the Flight Data Tab
+
+
+ NUM_tracklength
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 7
+
+
+ NoControl
+
+
+ 579, 107
+
+
+ 102, 17
+
+
+ 34
+
+
+ Alt Warning
+
+
+ CHK_speechaltwarning
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 8
+
+
+ NoControl
+
+
+ 30, 269
+
+
+ 61, 13
+
+
+ 0
+
+
+ APM Reset
+
+
+ label108
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 9
+
+
+ NoControl
+
+
+ 139, 267
+
+
+ 163, 17
+
+
+ 1
+
+
+ Reset APM on USB Connect
+
+
+ CHK_resetapmonconnect
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 10
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 33, 411
+
+
+ 144, 17
+
+
+ 2
+
+
+ Mavlink Message Debug
+
+
+ CHK_mavdebug
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 11
+
+
+ NoControl
+
+
+ 590, 244
+
+
+ 22, 13
+
+
+ 3
+
+
+ RC
+
+
+ label107
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 12
+
+
+ 0
+
+
+ 1
+
+
+ 3
+
+
+ 10
+
+
+ 621, 240
+
+
+ 80, 21
+
+
+ 4
+
+
+ CMB_raterc
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 13
+
+
+ NoControl
+
+
+ 425, 244
+
+
+ 69, 13
+
+
+ 5
+
+
+ Mode/Status
+
+
+ label104
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 14
+
+
+ NoControl
+
+
+ 280, 244
+
+
+ 44, 13
+
+
+ 6
+
+
+ Position
+
+
+ label103
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 15
+
+
+ NoControl
+
+
+ 136, 244
+
+
+ 43, 13
+
+
+ 7
+
+
+ Attitude
+
+
+ label102
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 16
+
+
+ NoControl
+
+
+ 27, 244
+
+
+ 84, 13
+
+
+ 8
+
+
+ Telemetry Rates
+
+
+ label101
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 17
+
+
+ 0
+
+
+ 1
3
@@ -2961,4207 +5458,972 @@
10
-
- 4
-
-
- 6
-
-
- 13
-
-
- 23
-
-
- groupBox2
-
-
- groupBox1
-
-
- NoControl
-
-
- 3, 3
-
-
- groupBox6
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- TabAC2
-
-
- groupBox6
-
-
-
-
-
- 280, 244
-
-
-
-
-
- NoControl
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 16
-
-
- HUD
-
-
- 0
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- TabAC2
-
-
- 10, 13
-
-
- 7
-
-
- 0
-
-
- 0
-
-
- CHK_enablespeech
-
-
- 10, 13
-
-
- NoControl
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NAV_LAT_IMAX
-
-
- 54, 13
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 52, 13
-
-
- I
-
-
- 111, 59
-
-
- 50, 13
-
-
- 4, 217
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- INT_MAX
-
-
-
-
-
- 2
-
-
- Bottom, Left
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- Joystick Setup
-
-
- label47
-
-
- NoControl
-
-
- 6
-
-
- Save
-
-
-
-
-
- ALT2PTCH_D
-
-
- 6, 63
-
-
- TabPlanner
-
-
- 6
-
-
- 9
-
-
- Bottom, Left
-
-
- 14, 13
-
-
- Airspeed m/s
-
-
- 102, 17
-
-
- label98
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 0, 0, 0, 0
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 6, 86
-
-
- 6
-
-
- 3
-
-
- 78, 20
-
-
- 10
-
-
- 6
-
-
- 139, 47
-
-
- 6, 16
-
-
- 2
-
-
- NoControl
-
-
-
-
-
- Navigation Angles
-
-
- groupBox24
-
-
- 5
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- RawValue
-
-
- False
-
-
- CHK_speechcustom
-
-
- groupBox20
-
-
- 16
-
-
- 4
-
-
- 78, 20
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- XTRK_ANGLE_CD
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 7
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 6
-
-
- 17
-
-
- P
-
-
- label42
-
-
- groupBox19
-
-
- D
-
-
- 3
-
-
- CHK_loadwponconnect
-
-
- 6, 66
-
-
- Loiter
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- Throttle 0-100%
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 15
-
-
- groupBox1
-
-
- 378, 107
-
-
- 205, 325
-
-
- 6, 40
-
-
- NoControl
-
-
- Nav WP
-
-
- 65, 13
-
-
- label43
-
-
- 0
-
-
- 78, 20
-
-
- 65, 13
-
-
-
-
-
- Alt Warning
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 111, 82
-
-
-
-
-
- NoControl
-
-
- label48
-
-
- Throttle Rate
-
-
- System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 36, 13
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- 78, 20
-
-
- 7
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- label108
-
-
- ConfigTabs
-
-
- 12
-
-
-
-
-
- 14
-
-
- 111, 36
-
-
- 78, 20
-
-
- I
-
-
- 33
-
-
- groupBox14
-
-
- label49
-
-
- groupBox10
-
-
- Crosstrack Correction
-
-
- 35
-
-
-
-
-
-
-
-
-
-
-
- P
-
-
- 30, 83
-
-
- groupBox19
-
-
- NoControl
-
-
- 16
-
-
-
-
-
- TabAC2
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 15
-
-
- 8
-
-
- 26
-
-
- Altitude Hold
-
-
- 57, 13
-
-
- groupBox1
-
-
- 12
-
-
- 4, 22
-
-
- 6, 63
-
-
- INT_MAX
-
-
- 17
-
-
- groupBox19
-
-
- TabPlanner
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- Lock Pitch and Roll Values
-
-
-
-
-
- 103, 18
-
-
- 13
-
-
- NoControl
-
-
- NoControl
-
-
- groupBox24
-
-
- 40
-
-
- 80, 63
-
-
- 71, 17
-
-
- 5
-
-
- 2
-
-
- 111, 82
-
-
- groupBox21
-
-
- label109
-
-
- 80, 63
-
-
- 0
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- CMB_videoresolutions
-
-
- NoControl
-
-
- groupBox13
-
-
-
-
-
- 3
-
-
- groupBox6
-
-
- 1
-
-
- NoControl
-
-
- groupBox2
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 80, 13
-
-
- groupBox11
-
-
- INT_MAX
-
-
- 54, 13
-
-
- 30, 111
-
-
-
-
-
- 4, 22
-
-
- 4
-
-
- label33
-
-
- 6, 40
-
-
- 0
-
-
- NoControl
-
-
- Value
-
-
- NoControl
-
-
- ARSPD_FBW_MIN
-
-
- 14
-
-
- 7
-
-
-
-
-
- 0
-
-
- 14
-
-
- 78, 20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Reset APM on USB Connect
-
-
- ALT2PTCH_IMAX
-
-
- 5
-
-
- 170, 91
-
-
- 7
-
-
- TabPlanner
-
-
- 78, 20
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
-
-
-
- 11
-
-
- 80, 61
-
-
- 1
-
-
- 78, 20
-
-
- YW2SRV_P
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 59
-
-
- 17
-
-
- 13
-
-
- groupBox8
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- 31, 438
-
-
- 78, 20
-
-
- 80, 37
-
-
- ARSPD_FBW_MAX
-
-
- Compare Params
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 3
-
-
- 78, 20
-
-
- label41
-
-
- 2
-
-
- groupBox20
-
-
- CMB_speedunits
-
-
- 195, 108
-
-
-
-
-
- 722, 434
-
-
-
-
-
- 22
-
-
- groupBox23
-
-
- THR_RATE_I
-
-
- groupBox3
-
-
-
-
-
-
-
-
-
-
-
- 5
-
-
- 1
-
-
- 111, 59
-
-
- 15, 13
-
-
- 13
-
-
- groupBox17
-
-
- 4, 325
-
-
- 11
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PTCH2SRV_P
-
-
- 78, 20
-
-
- 78, 20
-
-
-
-
-
- NoControl
-
-
- 28
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- 144, 17
-
-
- 78, 20
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- groupBox10
-
-
- 358, 221
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- groupBox2
-
-
- 78, 20
-
-
-
-
-
- STB_YAW_P
-
499, 240
-
- 1
-
-
-
-
-
- TabPlanner
-
-
- 111, 13
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 78, 20
-
-
- 10
-
-
- D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 621, 240
-
-
- 322, 107
-
-
- groupBox2
-
-
- groupBox11
-
-
- 2
-
-
- NoControl
-
-
- groupBox2
-
-
-
-
-
- IMAX
-
-
- 4
-
-
- 6, 86
-
-
- 0
-
-
- 7
-
-
- 6, 17
-
-
- XTRACK_I
-
-
- 7
-
-
-
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
-
-
-
- 2
-
-
- 11
-
-
- 4
-
-
- NoControl
-
-
- groupBox18
-
-
- Joystick
-
-
- 169, 441
-
-
- 14
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 7
-
-
- NoControl
-
-
- 15
-
-
- 54, 13
-
-
- 9
-
-
- 80, 37
-
-
- groupBox12
-
-
- 7
-
-
- CMB_raterc
-
-
- groupBox24
-
-
- KFF_PTCH2THR
-
-
- PTCH2SRV_IMAX
-
-
- Bottom, Left
-
-
- Top, Bottom, Left
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 8
-
-
- $this
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 27
-
-
- KFF_PTCHCOMP
-
-
- 9
-
-
- 19
-
-
- 4
-
-
- 78, 20
-
-
- NoControl
-
-
- 1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14
-
-
- On the Flight Data Tab
-
-
-
-
-
- 6, 107
-
-
- 45, 13
-
-
- groupBox24
-
-
- 5
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 78, 20
-
-
- 138, 21
-
-
- groupBox3
-
-
- 9
-
-
- groupBox20
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- 4
-
-
- 41
-
-
- 0
-
-
- NoControl
-
-
- Gain (cm)
-
-
- 6
-
-
- NoControl
-
-
- RATE_PIT_P
-
-
- groupBox4
-
-
-
-
-
- 5
-
-
- 7
-
-
- 65, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 6, 40
-
-
-
-
-
-
-
-
- Rate Pitch
-
-
- 80, 13
-
-
- LIM_PITCH_MIN
-
-
- TabPlanner
-
-
-
-
-
- 61, 13
-
80, 21
-
- APM Reset
+
+ 9
-
- 1
+
+ CMB_ratestatus
-
- 6, 16
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 7
-
-
- 63
-
-
- 10
-
-
- 13
-
-
- Battery Warning
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- IMAX
-
-
- 7
-
-
- 21
-
-
- groupBox22
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 5
-
-
- 5
-
-
- groupBox2
-
-
+
TabPlanner
-
- System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 18
-
- 67, 20
-
-
-
-
-
- 14, 13
-
-
-
-
-
- TabPlanner
-
-
- 14
-
-
+
0
-
- 75, 19
-
-
+
1
-
- 30, 292
+
+ 3
-
- 3, 3, 3, 3
+
+ 10
-
- TabAC2
+
+ 334, 240
-
- 111, 13
+
+ 80, 21
-
+
+ 10
+
+
+ CMB_rateposition
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
TabPlanner
-
- 38
+
+ 19
-
- NoControl
+
+ 0
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 15
-
-
- 80, 63
-
-
+
1
-
- 4
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
3
10
-
- 42
+
+ 188, 240
-
- 0, 0
-
-
- NoControl
-
-
- groupBox17
-
-
- 2
-
-
-
-
-
- label18
-
-
- 15, 13
-
-
- 111, 13
-
-
- 3
-
-
- NoControl
-
-
- NoControl
-
-
- 5
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- label14
-
-
- NoControl
-
-
- 14, 13
-
-
- System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 11
-
-
- 5
-
-
- Cruise
-
-
-
-
-
- 0
-
-
- 1
-
-
- 100, 23
-
-
- 78, 20
-
-
- 78, 20
-
-
-
-
-
- TabPlanner
-
-
- 5
-
-
- I
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- Mode/Status
-
-
- 2
-
-
- 11
-
-
- 80, 37
-
-
- 6
-
-
- NoControl
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC2
-
-
- 80, 13
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- label84
-
-
- groupBox6
-
-
- 7
-
-
-
-
-
- 78, 20
-
-
- groupBox18
-
-
- label73
-
-
- 53, 13
-
-
- Servo Yaw Pid
-
-
- 78, 20
-
-
- 4
-
-
- P
-
-
-
-
-
- Pitch Max
-
-
- TabAPM2
-
-
- D
-
-
- groupBox23
-
-
- label103
-
-
- 6
-
-
- groupBox14
-
-
-
-
-
- 1
-
-
-
-
-
- 11
-
-
- 38
-
-
-
-
-
- 78, 20
-
-
- 9
-
-
- 3
-
-
- Stabilize Yaw
-
-
- 3
-
-
- groupBox20
-
-
- label34
-
-
- NoControl
-
-
- 14, 13
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- groupBox15
-
-
- BUT_videostart
-
-
- 5
-
-
- IMAX
-
-
- 78, 20
-
-
- 35
-
-
- 3
-
-
- NoControl
-
-
- 10, 13
-
-
- groupBox4
-
-
- 6
-
-
- 32, 13
-
-
- 5
-
-
- 4
-
-
- STB_RLL_P
-
-
- label35
-
-
- TabPlanner
-
-
- $this
-
-
- 406, 109
-
-
- I
-
-
- label62
-
-
- 4
-
-
- 1
-
-
- STB_YAW_IMAX
-
-
- 177, 17
-
-
- NoControl
-
-
-
-
-
- 5
-
-
- TabPlanner
-
-
- CMB_osdcolor
-
-
- 3
-
-
- 0
-
-
-
-
-
-
-
-
- 78, 20
-
-
- 7
-
-
- 182, 107
-
-
- 14, 13
-
-
- label80
-
-
-
-
-
- TabPlanner
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 63
-
-
- groupBox4
-
-
- 7
-
-
- 78, 20
-
-
- groupBox18
-
-
-
-
-
- NoControl
-
-
- 5
-
-
- groupBox14
-
-
- 5
-
-
- 11
-
-
-
-
-
- Speed Units
-
-
- NoControl
-
-
- label81
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 86
-
-
-
-
-
-
-
-
- BUT_save
-
-
- 3
-
-
-
-
-
- groupBox20
-
-
- 14
-
-
- P
-
-
- CHK_speechbattery
-
-
- I
-
-
- 26
-
-
- label30
-
-
- RawValue
-
-
- label17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- False
-
-
- $this
-
-
- Configuration
-
-
- 82, 13
-
-
- groupBox11
-
-
- 78, 20
-
-
- groupBox1
-
-
- 23
-
-
- groupBox13
-
-
- label31
-
-
- THR_MAX
-
-
- 61, 13
-
-
- 14, 13
-
-
- TabPlanner
-
-
- 54, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 36, 13
-
-
- STB_RLL_IMAX
-
-
- 80, 13
-
-
- 78, 20
-
-
- label87
-
-
- 6, 40
-
-
- 75, 19
-
-
- Load param's from file
-
-
- 6, 89
-
-
- 1
-
-
- ACRO_PIT_P
-
-
- 80, 63
-
-
- 4
-
-
- TabPlanner
-
-
- label36
-
-
- TabPlanner
-
-
- ARSP2PTCH_IMAX
-
-
- groupBox9
-
-
- 78, 20
-
-
-
-
-
- groupBox25
-
-
- 4
-
-
- Time Interval
-
-
- Other Mix's
-
-
- 0
-
-
-
-
-
- Acro Roll
-
-
- Mode
-
-
- groupBox23
-
-
-
-
-
- 405, 217
-
-
- TabAC2
-
-
- 11
-
-
- 7
-
-
- 80, 13
-
-
- label12
-
-
- 0
-
-
- label37
-
-
- 5
-
-
- 1
-
-
- TabPlanner
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- I
-
-
- Attitude
-
-
- P
-
-
- 1
-
-
- RC
-
-
- 6, 86
-
-
- 3
-
-
- 80, 63
-
-
- NoControl
-
-
- label82
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 36
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox17
-
-
- 54, 13
-
-
- 1
-
-
- groupBox21
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Speech
-
-
-
-
-
- 0
-
-
- 9
-
-
-
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14, 13
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- THR_RATE_IMAX
-
-
- 1
-
-
- 1008, 461
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAPM2
-
-
- Error Max
-
-
- label83
-
-
- 3
-
-
- 0
-
-
- 0
-
-
- NoControl
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 195, 108
-
-
- 7
-
-
-
-
-
- 6
-
-
- 6
-
-
- 6, 40
-
-
- 7
-
-
- 6
-
-
- 111, 59
-
-
- label32
-
-
- label19
-
-
- groupBox13
-
-
- 1
-
-
- label88
-
-
- 78, 20
-
-
- groupBox22
-
-
- NoControl
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- NoControl
-
-
- 2
-
-
- 170, 95
-
-
- 163, 17
-
-
- groupBox3
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- 170, 91
-
-
- groupBox14
-
-
- label15
-
-
- groupBox4
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 86
-
-
- RATE_RLL_P
-
-
- 195, 108
-
-
- 5
-
-
- 21
-
-
- groupBox9
-
-
- 534, 107
-
-
- TabPlanner
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 64
-
-
- 4
-
-
- 13
-
-
- label38
-
-
- groupBox1
-
-
- $this
-
-
- 111, 59
-
-
- groupBox16
-
-
- 4
-
-
- 12
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- TabPlanner
-
-
- 195, 108
-
-
- groupBox6
-
-
- 0
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 100, 23
-
-
- XTRACK_IMAX
-
-
- label39
-
-
-
-
-
- 6, 16
-
-
- 78, 20
-
-
- NoControl
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14
-
-
- 6
-
-
- groupBox15
-
-
- 14
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- RATE_YAW_P
-
-
-
-
-
- groupBox4
-
-
-
-
-
- 1
-
-
- 6, 40
-
-
-
-
-
- Default
-
-
- 12
-
-
- TabAPM2
-
-
- LIM_PITCH_MAX
-
-
-
-
-
- label10
-
-
- 0
-
-
- groupBox8
-
-
- 3
-
-
-
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 99, 23
-
-
- 80, 63
-
-
- NoControl
-
-
-
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14
-
-
- THR_ALT_P
-
-
- TabPlanner
-
-
- 6
-
-
- label11
-
-
- 6, 17
-
-
- groupBox7
-
-
- 14
-
-
-
-
-
-
-
-
- 6, 16
-
-
- label1
-
-
-
-
-
- 80, 63
-
-
- 111, 82
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- P
-
-
- label16
-
-
-
-
-
- 3
-
-
+
80, 21
-
- 6, 16
-
-
- ConfigTabs
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 182, 221
-
-
- 0
-
-
-
-
-
- 7
-
-
- 4
-
-
- 13
-
-
- 4, 1
-
-
- 30, 340
-
-
- D
-
-
- 9
-
-
- 12
-
-
- 8
-
-
- NoControl
-
-
- label5
-
-
- groupBox14
-
-
- 111, 59
-
-
- 6, 17
-
-
- NoControl
-
-
- 170, 95
-
-
- 10, 13
-
-
-
-
-
- TabAPM2
-
-
-
-
-
- 4
-
-
- 6, 40
-
-
- 2
-
-
- 6, 40
-
-
- 14, 13
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Refresh Params
-
-
- CHK_lockrollpitch
-
-
- HDNG2RLL_I
-
-
- 12
-
-
-
-
-
-
-
-
- 6, 16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 10, 13
-
-
- 19
-
-
- CMB_language
-
-
- label9
-
-
- RATE_PIT_I
-
-
- NoControl
-
-
- 7
-
-
- 12
-
-
- 471, 11
-
-
- groupBox12
-
-
- groupBox3
-
-
- groupBox16
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0, 0, 0, 0
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Write Params
-
-
- 78, 20
-
-
- 80, 13
-
-
- IMAX
-
-
- 68, 13
-
-
- 6, 17
-
-
-
-
-
- NoControl
-
-
- 80, 37
-
-
-
-
-
- 2
-
-
- XTRACK_P
-
-
- 14
-
-
- NoControl
-
-
- 4
-
-
- TabPlanner
-
-
-
-
-
- 4
-
-
- I
-
-
- 425, 244
-
-
- Value
-
-
- 139, 291
-
-
- KFF_RDDRMIX
-
-
- 36
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Video Format
-
-
- 0
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAPM2
-
-
- label13
-
-
- 41
-
-
- mavScale
-
-
- groupBox16
-
-
- TabAC2
-
-
- 80, 86
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabSetup
-
-
- NoControl
-
-
- 78, 20
-
-
- I
-
-
- P
-
-
- 2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- I
-
-
- 111, 13
-
-
- 2
-
-
- 0
-
-
- 14, 13
-
-
- groupBox3
-
-
- 3
-
-
-
-
-
- 78, 20
-
-
- 5
-
-
- 6, 66
-
-
- 5
-
-
- Waypoints
-
-
-
-
-
- 15
-
-
- 10, 13
-
-
- 138, 21
-
-
- $this
-
-
- 80, 37
-
-
-
-
-
- groupBox22
-
-
- TabPlanner
-
-
- 78, 20
-
-
-
-
-
- 78, 20
-
-
- 6, 17
-
-
- 1
-
-
- TabAC2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Command
-
-
- 78, 20
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 10
-
-
- 29
-
-
- 2
-
-
- groupBox11
-
-
-
-
-
- NoControl
-
-
- 6, 16
-
-
- 2
-
-
- Pitch Comp
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 19
-
-
- 5
-
-
- FBW min
-
-
- NoControl
-
-
- D
-
-
- 51, 13
-
-
-
-
-
- 6, 66
-
-
-
+
+ 11
CMB_rateattitude
-
-
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- HLD_LAT_I
-
-
- 6, 40
-
-
- 6, 40
-
-
- 7
-
-
- I
-
-
-
-
-
- groupBox12
-
-
- 80, 13
-
-
- 11
-
-
- 2
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- 111, 13
-
-
-
-
-
+
System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox10
-
-
- 6, 63
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 82, 416
-
-
-
-
-
- 5
-
-
- 78, 20
-
-
- Bank Max
-
-
- AC2
-
-
- groupBox9
-
-
- 78, 20
-
-
-
-
-
- 78, 20
-
-
- 0
-
-
- 103, 19
-
-
- groupBox14
-
-
- groupBox13
-
-
-
-
-
- 2
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- P
-
-
- 54, 13
-
-
- 6
-
-
- 0
-
-
-
-
-
- 69, 13
-
-
- 6, 63
-
-
- Rate Yaw
-
-
- 13
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- TabAC2
-
-
- FS Value
-
-
- 5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
TabPlanner
-
- 10, 13
+
+ 20
-
+
+ NoControl
+
+
+ 283, 209
+
+
+ 402, 13
+
+
12
-
-
-
-
- 5
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- groupBox16
-
-
- 111, 36
-
-
-
-
-
- 7
-
-
- 15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 7
-
-
-
-
-
- 10, 13
-
-
- BUT_videostop
-
-
- CHK_resetapmonconnect
-
-
-
-
-
- 14, 13
-
-
- 245, 21
-
-
- 15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 11
-
-
- 78, 20
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- 3
-
-
- 2
-
-
- 6, 40
-
-
- System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 55, 13
-
-
- ARSPD_RATIO
-
-
- Params
-
-
- groupBox19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 37
-
-
- 0
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- groupBox5
-
-
- 0
-
-
- 7
-
-
-
-
-
- TabPlanner
-
-
- ACRO_PIT_IMAX
-
-
- TabPlanner
-
-
- NoControl
-
-
- 6, 89
-
-
- groupBox25
-
-
-
-
-
- NoControl
-
-
-
-
-
-
-
-
- IMAX
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Pitch Min
-
-
- 269, 409
-
-
- 358, 107
-
-
- I
-
-
- NoControl
-
-
- TabAPM2
-
-
- ACRO_RLL_I
-
-
- 7
-
-
- 0, 0, 0, 0
-
-
-
-
-
- 78, 20
-
-
- NoControl
-
-
- Stop
-
-
- 18
-
-
- 169, 416
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 111, 13
-
-
- 78, 20
-
-
- 1
-
-
- 2
-
-
- 4
-
-
- label74
-
-
- 78, 20
-
-
- RATE_RLL_I
-
-
- NoControl
-
-
- 78, 20
-
-
- 7
-
-
- 6, 66
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 14, 13
-
-
- 54, 13
-
-
- CMB_videosources
-
-
- Acro Pitch
-
-
- groupBox12
-
-
- TabPlanner
-
-
- groupBox13
-
-
- label75
-
-
- ACRO_RLL_IMAX
-
-
- 3
-
-
- NoControl
-
-
- 5
-
-
- 6, 40
-
-
-
-
-
-
-
-
- 139, 214
-
-
- 6, 63
-
-
- 5
-
-
- 2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 16
-
-
- 6, 66
-
-
- TabPlanner
-
-
- 33, 411
-
-
- 6, 17
-
-
- 7
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 12
-
-
- 16
-
-
- 111, 59
-
-
-
-
-
- CHK_speechmode
-
-
- 111, 59
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
- Entry Angle
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
NOTE: The Configuration Tab will NOT display these units, as those are raw values.
-
-
+
+ label99
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
- 84, 13
-
-
- 2
-
-
- 4
-
-
- 4
-
-
- $this
-
-
-
-
-
- 8
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- Position
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 80, 63
-
-
-
-
-
- 8
-
-
- 0
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6
-
-
- LIM_ROLL_CD
-
-
- groupBox10
-
-
- label66
-
-
- label70
-
-
- groupBox13
-
-
-
-
-
- 6, 40
-
-
- System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- OpenGL = Disabled
-GDI+ = Enabled
-
-
- 6
-
-
- 54, 13
-
-
- BUT_rerequestparams
-
-
- 8
-
-
- 111, 82
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
- NoControl
-
-
- Xtrack Pids
-
-
- NoControl
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
TabPlanner
-
- 24, 13
+
+ 21
-
- label71
-
-
- 39
-
-
- 552, 15
-
-
- groupBox11
-
-
- BUT_compare
-
-
- 139, 107
-
-
+
NoControl
-
- Planner
+
+ 30, 217
-
- 6, 63
+
+ 65, 13
-
+
+ 13
+
+
+ Speed Units
+
+
+ label98
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
TabPlanner
-
- I
+
+ 22
-
- 5
+
+ NoControl
-
- 0
+
+ 30, 189
-
- 13
+
+ 52, 13
-
- groupBox21
+
+ 14
-
- OSD Color
+
+ Dist Units
-
-
+
+ label97
-
- Rate Roll
-
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- label25
-
-
- 80, 37
-
-
- label76
-
-
- 6, 86
-
-
- 406, 1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- NoControl
-
-
- 100, 23
-
-
- 37
-
-
- NoControl
-
-
- 6, 6
-
-
- 111, 36
-
-
-
-
-
- 64, 13
-
-
- 111, 36
-
-
- 11
-
-
- Mavlink Message Debug
-
-
- System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 111, 13
-
-
- 6, 337
-
-
- BUT_load
-
-
- label77
-
-
- 9
-
-
- 3
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox18
-
-
- 2
-
-
- 9
-
-
- 78, 20
-
-
- NoControl
-
-
- NoControl
-
-
- 5
-
-
- 195, 108
-
-
-
-
-
- groupBox7
-
-
- Bottom, Left
-
-
-
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 66
-
-
- RLL2SRV_D
-
-
- 32
-
-
-
-
-
- 9
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- 170, 95
-
-
- label20
-
-
- 15, 13
-
-
- 6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- label92
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- label63
-
-
- TRIM_ARSPD_CM
-
-
-
-
-
- 111, 36
-
-
- 7
-
-
- 170, 91
-
-
- 10, 13
-
-
- NoControl
-
-
- label21
-
-
- 13
-
-
- groupBox9
-
-
- label72
-
-
- label54
-
-
- 471, 107
-
-
- 10
-
TabPlanner
-
-
+
+ 23
-
- groupBox11
+
+ 139, 214
-
- groupBox11
+
+ 138, 21
-
- 99, 17
+
+ 15
-
- groupBox6
+
+ CMB_speedunits
-
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
TabPlanner
-
- 1
+
+ 24
-
- PTCH2SRV_I
+
+ 139, 187
-
- groupBox24
+
+ 138, 21
-
- 139, 267
+
+ 16
-
- Load Waypoints on connect?
+
+ CMB_distunits
-
- STB_RLL_I
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- label26
+
+ TabPlanner
-
- label55
+
+ 25
-
- groupBox25
-
-
- 14
-
-
+
NoControl
-
- 78, 20
+
+ 30, 162
-
- 34
+
+ 45, 13
-
- 3
+
+ 17
-
- 14, 13
+
+ Joystick
-
- groupBox8
+
+ label96
-
-
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 62
+
+ TabPlanner
-
-
+
+ 26
-
- 5
+
+ NoControl
-
-
+
+ 30, 111
-
- 150
+
+ 44, 13
-
- groupBox25
+
+ 18
-
+
+ Speech
+
+
+ label95
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 27
+
+
+ NoControl
+
+
+ 471, 107
+
+
+ 102, 17
+
+
+ 19
+
+
+ Battery Warning
+
+
+ CHK_speechbattery
+
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- label78
+
+ TabPlanner
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 28
+
+
+ NoControl
+
+
+ 378, 107
+
+
+ 87, 17
+
+
+ 20
+
+
+ Time Interval
+
+
+ CHK_speechcustom
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 29
+
+
+ NoControl
+
+
+ 322, 107
+
+
+ 56, 17
+
+
+ 21
+
+
+ Mode
+
+
+ CHK_speechmode
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 30
+
+
+ NoControl
+
+
+ 245, 107
+
+
+ 71, 17
+
+
+ 22
+
+
+ Waypoint
+
+
+ CHK_speechwaypoint
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 31
+
+
+ NoControl
+
+
+ 30, 83
+
+
+ 57, 13
+
+
+ 23
+
+
+ OSD Color
+
+
+ label94
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 32
+
+
+ 139, 80
138, 21
-
+
+ 24
+
+
+ CMB_osdcolor
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 33
+
+
+ 139, 131
+
+
+ 138, 21
+
+
+ 25
+
+
+ CMB_language
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 34
+
+
+ NoControl
+
+
+ 30, 135
+
+
+ 69, 13
+
+
+ 26
+
+
+ UI Language
+
+
+ label93
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 54, 13
+
+ TabPlanner
-
- STB_YAW_I
+
+ 35
-
- groupBox22
+
+ NoControl
-
- label104
+
+ 139, 107
-
- 5
+
+ 99, 17
-
+
+ 27
+
+
+ Enable Speech
+
+
+ CHK_enablespeech
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 36
+
+
+ NoControl
+
+
+ 552, 15
+
+
+ 125, 17
+
+
+ 28
+
+
+ Enable HUD Overlay
+
+
+ CHK_hudshow
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPlanner
+
+
+ 37
+
+
+ NoControl
+
+
+ 30, 16
+
+
+ 100, 23
+
+
+ 29
+
+
+ Video Device
+
+
+ label92
+
+
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox25
+
+ TabPlanner
-
-
+
+ 38
139, 13
-
- 80, 13
+
+ 245, 21
-
- 80, 63
+
+ 30
-
- 9
+
+ CMB_videosources
-
- label79
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox3
+
+ TabPlanner
-
- TabAC2
+
+ 39
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ NoControl
-
- label86
+
+ 139, 158
-
- groupBox3
+
+ 99, 23
-
-
+
+ 31
-
- ALT2PTCH_P
+
+ Joystick Setup
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ BUT_Joystick
-
- 15
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
-
- 65, 13
+
+ TabPlanner
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 40
-
- 10, 13
+
+ NoControl
-
- 10
+
+ 471, 11
-
- groupBox13
+
+ 75, 23
-
- I
+
+ 32
-
- groupBox22
+
+ Stop
+
+
+ BUT_videostop
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ TabPlanner
+
+
+ 41
+
+
+ NoControl
+
+
+ 390, 11
+
+
+ 75, 23
+
+
+ 33
+
+
+ Start
+
+
+ BUT_videostart
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ TabPlanner
+
+
+ 42
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 722, 434
+
+
+ 2
+
+
+ Planner
+
+
+ TabPlanner
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ConfigTabs
+
+
+ 2
+
+
+ 4, 22
+
+
+ 722, 434
+
+
+ 3
+
+
+ Setup
+
+
+ TabSetup
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ConfigTabs
+
+
+ 3
52, 18
-
- True
+
+ 278, 0
+
+
+ 0, 0, 0, 0
+
+
+ 0, 0
+
+
+ 730, 460
+
+
+ 62
+
+
+ ConfigTabs
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ 0, 0
+
+
+ 100, 23
+
+
+ 0
+
+
+ label109
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 169, 441
+
+
+ 103, 19
+
+
+ 0
+
+
+ Refresh Params
+
+
+ Reload params from device
+
+
+ BUT_rerequestparams
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ $this
+
+
+ 1
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 169, 416
+
+
+ 103, 19
+
+
+ 63
+
+
+ Write Params
+
+
+ Write changed params to device
+
+
+ BUT_writePIDS
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ $this
+
+
+ 3
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 82, 416
+
+
+ 0, 0, 0, 0
+
+
+ 75, 19
+
+
+ 64
+
+
+ Save
+
+
+ Save params to file
+
+
+ BUT_save
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ $this
+
+
+ 4
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 3, 416
+
+
+ 0, 0, 0, 0
+
+
+ 75, 19
+
+
+ 65
+
+
+ Load
+
+
+ Load param's from file
+
+
+ BUT_load
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ $this
+
+
+ 5
+
+
+ Bottom, Left
+
+
+ NoControl
+
+
+ 31, 438
+
+
+ 103, 19
+
+
+ 66
+
+
+ Compare Params
+
+
+ BUT_compare
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ $this
+
+
+ 0
True
-
- 17, 17
+
+ 6, 13
-
- True
+
+ 1008, 461
-
- True
+
+ Command
-
- True
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Value
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Default
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ mavScale
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ RawValue
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ toolTip1
+
+
+ System.Windows.Forms.ToolTip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Configuration
+
+
+ System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
..\Resources\MAVParam.txt;System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs
index 698fe0c59e..9eaeb83689 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs
@@ -510,7 +510,7 @@ namespace ArdupilotMega.GCSViews
Console.WriteLine("Detected a " + board);
string baseurl = "";
- if (board == "2560" || board == "2560-2")
+ if (board == "2560")
{
baseurl = temp.url2560.ToString();
}
@@ -605,7 +605,7 @@ namespace ArdupilotMega.GCSViews
//port = new ArduinoSTK();
port.BaudRate = 57600;
}
- else if (board == "2560" || board == "2560-2")
+ else if (board == "2560")
{
port = new ArduinoSTKv2();
port.BaudRate = 115200;
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs
index 7dc0455310..bddd7f9853 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs
@@ -10,6 +10,9 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FlightData));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
+ this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.goHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.pointCameraHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MainH = new System.Windows.Forms.SplitContainer();
this.SubMainLeft = new System.Windows.Forms.SplitContainer();
this.hud1 = new hud.HUD();
@@ -52,9 +55,6 @@
this.lbl_winddir = new ArdupilotMega.MyLabel();
this.lbl_windvel = new ArdupilotMega.MyLabel();
this.gMapControl1 = new GMap.NET.WindowsForms.GMapControl();
- this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.goHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.pointCameraHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.TXT_lat = new ArdupilotMega.MyLabel();
this.Zoomlevel = new System.Windows.Forms.NumericUpDown();
@@ -68,6 +68,7 @@
this.ZedGraphTimer = new System.Windows.Forms.Timer(this.components);
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.label6 = new ArdupilotMega.MyLabel();
+ this.contextMenuStrip1.SuspendLayout();
this.MainH.Panel1.SuspendLayout();
this.MainH.Panel2.SuspendLayout();
this.MainH.SuspendLayout();
@@ -86,11 +87,30 @@
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
- this.contextMenuStrip1.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.Zoomlevel)).BeginInit();
this.SuspendLayout();
//
+ // contextMenuStrip1
+ //
+ this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.goHereToolStripMenuItem,
+ this.pointCameraHereToolStripMenuItem});
+ this.contextMenuStrip1.Name = "contextMenuStrip1";
+ resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
+ //
+ // goHereToolStripMenuItem
+ //
+ this.goHereToolStripMenuItem.Name = "goHereToolStripMenuItem";
+ resources.ApplyResources(this.goHereToolStripMenuItem, "goHereToolStripMenuItem");
+ this.goHereToolStripMenuItem.Click += new System.EventHandler(this.goHereToolStripMenuItem_Click);
+ //
+ // pointCameraHereToolStripMenuItem
+ //
+ this.pointCameraHereToolStripMenuItem.Name = "pointCameraHereToolStripMenuItem";
+ resources.ApplyResources(this.pointCameraHereToolStripMenuItem, "pointCameraHereToolStripMenuItem");
+ this.pointCameraHereToolStripMenuItem.Click += new System.EventHandler(this.pointCameraHereToolStripMenuItem_Click);
+ //
// MainH
//
this.MainH.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
@@ -1098,26 +1118,6 @@
this.gMapControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseDown);
this.gMapControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseMove);
//
- // contextMenuStrip1
- //
- this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.goHereToolStripMenuItem,
- this.pointCameraHereToolStripMenuItem});
- this.contextMenuStrip1.Name = "contextMenuStrip1";
- resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
- //
- // goHereToolStripMenuItem
- //
- this.goHereToolStripMenuItem.Name = "goHereToolStripMenuItem";
- resources.ApplyResources(this.goHereToolStripMenuItem, "goHereToolStripMenuItem");
- this.goHereToolStripMenuItem.Click += new System.EventHandler(this.goHereToolStripMenuItem_Click);
- //
- // pointCameraHereToolStripMenuItem
- //
- this.pointCameraHereToolStripMenuItem.Name = "pointCameraHereToolStripMenuItem";
- resources.ApplyResources(this.pointCameraHereToolStripMenuItem, "pointCameraHereToolStripMenuItem");
- this.pointCameraHereToolStripMenuItem.Click += new System.EventHandler(this.pointCameraHereToolStripMenuItem_Click);
- //
// panel1
//
this.panel1.Controls.Add(this.TXT_lat);
@@ -1246,6 +1246,7 @@
this.Load += new System.EventHandler(this.FlightData_Load);
this.Resize += new System.EventHandler(this.FlightData_Resize);
this.ParentChanged += new System.EventHandler(this.FlightData_ParentChanged);
+ this.contextMenuStrip1.ResumeLayout(false);
this.MainH.Panel1.ResumeLayout(false);
this.MainH.Panel2.ResumeLayout(false);
this.MainH.ResumeLayout(false);
@@ -1265,7 +1266,6 @@
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
- this.contextMenuStrip1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.Zoomlevel)).EndInit();
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
index 9cba58f074..23e320a9e3 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
@@ -695,7 +695,7 @@ namespace ArdupilotMega.GCSViews
{
((Button)sender).Enabled = false;
#if MAVLINK10
- comPort.doCommand((MAVLink.MAV_CMD)Enum.Parse(typeof(MAVLink.MAV_CMD), CMB_action.Text));
+ comPort.doCommand((MAVLink.MAV_CMD)Enum.Parse(typeof(MAVLink.MAV_CMD), CMB_action.Text),0,0,0,0,0,0,0);
#else
comPort.doAction((MAVLink.MAV_ACTION)Enum.Parse(typeof(MAVLink.MAV_ACTION), "MAV_ACTION_" + CMB_action.Text));
#endif
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.resx b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.resx
index c7658555de..845fa8bfd8 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.resx
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.resx
@@ -117,11 +117,35 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 290, 17
+
+
+
+ 174, 22
+
+
+ Fly To Here
+
+
+ 174, 22
+
+
+ Point Camera Here
+
+
+ 175, 48
+
+
+ contextMenuStrip1
+
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
Fill
-
0, 0
@@ -184,7 +208,7 @@
hud1
- hud.HUD, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ hud.HUD, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
SubMainLeft.Panel1
@@ -229,7 +253,7 @@
BUT_joystick
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -259,7 +283,7 @@
BUT_quickmanual
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -289,7 +313,7 @@
BUT_quickrtl
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -319,7 +343,7 @@
BUT_quickauto
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -373,7 +397,7 @@
BUT_setwp
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -424,7 +448,7 @@
BUT_setmode
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -454,7 +478,7 @@
BUT_clear_track
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -505,7 +529,7 @@
BUT_Homealt
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -535,7 +559,7 @@
BUT_RAWSensor
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -565,7 +589,7 @@
BUTrestartmission
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -595,7 +619,7 @@
BUTactiondo
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabActions
@@ -649,7 +673,7 @@
Gvspeed
- AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabGauges
@@ -679,7 +703,7 @@
Gheading
- AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabGauges
@@ -709,7 +733,7 @@
Galt
- AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabGauges
@@ -742,7 +766,7 @@
Gspeed
- AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabGauges
@@ -823,7 +847,7 @@
lbl_logpercent
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabTLogs
@@ -874,7 +898,7 @@
BUT_log2kml
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabTLogs
@@ -925,7 +949,7 @@
BUT_playlog
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabTLogs
@@ -952,7 +976,7 @@
BUT_loadtelem
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
tabTLogs
@@ -1138,7 +1162,7 @@
lbl_winddir
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
splitContainer1.Panel2
@@ -1168,7 +1192,7 @@
lbl_windvel
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
splitContainer1.Panel2
@@ -1176,30 +1200,6 @@
1
-
- 290, 17
-
-
- 174, 22
-
-
- Fly To Here
-
-
- 174, 22
-
-
- Point Camera Here
-
-
- 175, 48
-
-
- contextMenuStrip1
-
-
- System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
Fill
@@ -1427,7 +1427,7 @@
TXT_lat
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
panel1
@@ -1484,7 +1484,7 @@
label1
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
panel1
@@ -1514,7 +1514,7 @@
TXT_long
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
panel1
@@ -1544,7 +1544,7 @@
TXT_alt
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
panel1
@@ -1745,7 +1745,7 @@
label6
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
$this
@@ -1765,6 +1765,18 @@
1008, 461
+
+ goHereToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pointCameraHereToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
recordHudToAVIToolStripMenuItem
@@ -1783,18 +1795,6 @@
System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- goHereToolStripMenuItem
-
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pointCameraHereToolStripMenuItem
-
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
dataGridViewImageColumn1
@@ -1823,6 +1823,6 @@
FlightData
- System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
\ No newline at end of file
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.Designer.cs
index d94e9fecea..851f72bc0c 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.Designer.cs
@@ -120,6 +120,7 @@
this.label11 = new System.Windows.Forms.Label();
this.panelBASE = new System.Windows.Forms.Panel();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
+ this.BUT_zoomto = new ArdupilotMega.MyButton();
((System.ComponentModel.ISupportInitialize)(this.Commands)).BeginInit();
this.panel5.SuspendLayout();
this.panel1.SuspendLayout();
@@ -508,6 +509,7 @@
this.panelWaypoints.CaptionFont = new System.Drawing.Font("Segoe UI", 11.75F, System.Drawing.FontStyle.Bold);
this.panelWaypoints.CaptionHeight = 21;
this.panelWaypoints.ColorScheme = BSE.Windows.Forms.ColorScheme.Custom;
+ this.panelWaypoints.Controls.Add(this.BUT_zoomto);
this.panelWaypoints.Controls.Add(this.BUT_Camera);
this.panelWaypoints.Controls.Add(this.BUT_grid);
this.panelWaypoints.Controls.Add(this.BUT_Prefetch);
@@ -832,6 +834,14 @@
resources.ApplyResources(this.panelBASE, "panelBASE");
this.panelBASE.Name = "panelBASE";
//
+ // BUT_zoomto
+ //
+ resources.ApplyResources(this.BUT_zoomto, "BUT_zoomto");
+ this.BUT_zoomto.Name = "BUT_zoomto";
+ this.toolTip1.SetToolTip(this.BUT_zoomto, resources.GetString("BUT_zoomto.ToolTip"));
+ this.BUT_zoomto.UseVisualStyleBackColor = true;
+ this.BUT_zoomto.Click += new System.EventHandler(this.BUT_zoomto_Click);
+ //
// FlightPlanner
//
resources.ApplyResources(this, "$this");
@@ -943,5 +953,6 @@
private System.Windows.Forms.DataGridViewButtonColumn Delete;
private System.Windows.Forms.DataGridViewImageColumn Up;
private System.Windows.Forms.DataGridViewImageColumn Down;
+ private MyButton BUT_zoomto;
}
}
\ No newline at end of file
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.cs
index 3deeb7ac6b..5f00291486 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.cs
@@ -691,6 +691,15 @@ namespace ArdupilotMega.GCSViews
private void Commands_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
{
+ for (int i = 0; i < Commands.ColumnCount; i++)
+ {
+ DataGridViewCell tcell = Commands.Rows[e.RowIndex].Cells[i];
+ if (tcell.GetType() == typeof(DataGridViewTextBoxCell))
+ {
+ tcell.Value = "0";
+ }
+ }
+
DataGridViewComboBoxCell cell = Commands.Rows[e.RowIndex].Cells[Command.Index] as DataGridViewComboBoxCell;
if (cell.Value == null)
{
@@ -2079,6 +2088,18 @@ namespace ArdupilotMega.GCSViews
// update row headers
((ComboBox)sender).ForeColor = Color.White;
ChangeColumnHeader(((ComboBox)sender).Text);
+ try
+ {
+ for (int i = 0; i < Commands.ColumnCount; i++)
+ {
+ DataGridViewCell tcell = Commands.Rows[selectedrow].Cells[i];
+ if (tcell.GetType() == typeof(DataGridViewTextBoxCell))
+ {
+ tcell.Value = "0";
+ }
+ }
+ }
+ catch { }
}
///
/// Get the Google earth ALT for a given coord
@@ -2723,5 +2744,21 @@ namespace ArdupilotMega.GCSViews
trackBar1.Size = new System.Drawing.Size(trackBar1.Size.Width, panelMap.Size.Height - trackBar1.Location.Y);
label11.Location = new Point(panelMap.Size.Width - 50, label11.Location.Y);
}
+
+ private void BUT_zoomto_Click(object sender, EventArgs e)
+ {
+ string place = "Perth, Australia";
+ Common.InputBox("Location", "Enter your location", ref place);
+
+ GeoCoderStatusCode status = MainMap.SetCurrentPositionByKeywords(place);
+ if (status != GeoCoderStatusCode.G_GEO_SUCCESS)
+ {
+ MessageBox.Show("Google Maps Geocoder can't find: '" + place + "', reason: " + status.ToString(), "GMap.NET", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
+ }
+ else
+ {
+ MainMap.Zoom = 15;
+ }
+ }
}
}
\ No newline at end of file
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.resx b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.resx
index 4c3ddace09..4495da6c9f 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.resx
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightPlanner.resx
@@ -127,7 +127,7 @@
- 326, 31
+ 213, 31
82, 17
@@ -148,7 +148,7 @@
panelWaypoints
- 3
+ 4
True
@@ -157,7 +157,7 @@
NoControl
- 411, 24
+ 298, 24
98, 17
@@ -178,7 +178,7 @@
panelWaypoints
- 8
+ 9
Top, Bottom, Left, Right
@@ -186,9 +186,9 @@
30
-
+
True
-
+
Command
@@ -198,9 +198,9 @@
150
-
+
True
-
+
P1
@@ -210,9 +210,9 @@
40
-
+
True
-
+
P2
@@ -222,9 +222,9 @@
40
-
+
True
-
+
P3
@@ -234,9 +234,9 @@
40
-
+
True
-
+
P4
@@ -246,9 +246,9 @@
40
-
+
True
-
+
Lat
@@ -258,9 +258,9 @@
40
-
+
True
-
+
Lon
@@ -270,9 +270,9 @@
40
-
+
True
-
+
Alt
@@ -282,9 +282,9 @@
40
-
+
True
-
+
Delete
@@ -294,9 +294,9 @@
50
-
+
True
-
+
Up
@@ -306,9 +306,9 @@
30
-
+
True
-
+
Down
@@ -340,7 +340,7 @@
panelWaypoints
- 10
+ 11
True
@@ -349,7 +349,7 @@
NoControl
- 411, 40
+ 298, 40
86, 17
@@ -370,10 +370,10 @@
panelWaypoints
- 12
+ 13
- 73, 32
+ 23, 36
36, 20
@@ -394,10 +394,10 @@
panelWaypoints
- 13
+ 14
- 280, 32
+ 154, 36
40, 20
@@ -418,7 +418,7 @@
panelWaypoints
- 11
+ 12
True
@@ -427,7 +427,7 @@
NoControl
- 9, 32
+ 9, 24
61, 13
@@ -448,7 +448,7 @@
panelWaypoints
- 4
+ 5
True
@@ -457,7 +457,7 @@
NoControl
- 221, 32
+ 151, 24
56, 13
@@ -478,10 +478,10 @@
panelWaypoints
- 9
+ 10
- 184, 32
+ 89, 36
36, 20
@@ -502,7 +502,7 @@
panelWaypoints
- 7
+ 8
True
@@ -511,7 +511,7 @@
NoControl
- 112, 32
+ 76, 24
69, 13
@@ -532,7 +532,7 @@
panelWaypoints
- 6
+ 7
Bottom, Right
@@ -556,7 +556,7 @@
BUT_write
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panel5
@@ -583,7 +583,7 @@
BUT_read
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panel5
@@ -610,7 +610,7 @@
SaveFile
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panel5
@@ -637,7 +637,7 @@
BUT_loadwpfile
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panel5
@@ -1128,9 +1128,9 @@
42
-
+
172, 17
-
+
Change the current map type
@@ -1239,11 +1239,41 @@
0
+
+ NoControl
+
+
+ 746, 26
+
+
+ 62, 23
+
+
+ 53
+
+
+ Zoom To
+
+
+ Get Camera settings for overlap
+
+
+ BUT_zoomto
+
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
+
+
+ panelWaypoints
+
+
+ 0
+
NoControl
- 809, 26
+ 692, 26
48, 23
@@ -1261,19 +1291,19 @@
BUT_Camera
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelWaypoints
- 0
+ 1
NoControl
- 755, 26
+ 638, 26
48, 23
@@ -1291,19 +1321,19 @@
BUT_grid
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelWaypoints
- 1
+ 2
NoControl
- 693, 26
+ 576, 26
56, 23
@@ -1321,19 +1351,19 @@
BUT_Prefetch
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelWaypoints
- 2
+ 3
NoControl
- 596, 26
+ 479, 26
91, 23
@@ -1351,19 +1381,19 @@
button1
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelWaypoints
- 5
+ 6
NoControl
- 515, 26
+ 398, 26
75, 23
@@ -1381,13 +1411,13 @@
BUT_Add
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelWaypoints
- 14
+ 15
Bottom
@@ -1536,9 +1566,9 @@
Top, Bottom, Left, Right
-
+
17, 17
-
+
167, 22
@@ -1823,7 +1853,7 @@
trackBar1
- ArdupilotMega.MyTrackBar, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+ ArdupilotMega.MyTrackBar, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
panelMap
@@ -1915,9 +1945,9 @@
1
-
+
True
-
+
6, 13
@@ -2105,9 +2135,6 @@
FlightPlanner
- System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
-
-
- ..\Resources\MAVCmd.txt;System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252
+ System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=38326cb7e06851fc
\ No newline at end of file
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.Designer.cs
index 0b7a3993ba..db612a34dd 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.Designer.cs
@@ -125,7 +125,6 @@
//
resources.ApplyResources(this.CHKREV_roll, "CHKREV_roll");
this.CHKREV_roll.Name = "CHKREV_roll";
- this.toolTip1.SetToolTip(this.CHKREV_roll, resources.GetString("CHKREV_roll.ToolTip"));
this.CHKREV_roll.UseVisualStyleBackColor = true;
this.CHKREV_roll.CheckedChanged += new System.EventHandler(this.CHKREV_roll_CheckedChanged);
//
@@ -133,7 +132,6 @@
//
resources.ApplyResources(this.CHKREV_pitch, "CHKREV_pitch");
this.CHKREV_pitch.Name = "CHKREV_pitch";
- this.toolTip1.SetToolTip(this.CHKREV_pitch, resources.GetString("CHKREV_pitch.ToolTip"));
this.CHKREV_pitch.UseVisualStyleBackColor = true;
this.CHKREV_pitch.CheckedChanged += new System.EventHandler(this.CHKREV_pitch_CheckedChanged);
//
@@ -141,13 +139,11 @@
//
resources.ApplyResources(this.CHKREV_rudder, "CHKREV_rudder");
this.CHKREV_rudder.Name = "CHKREV_rudder";
- this.toolTip1.SetToolTip(this.CHKREV_rudder, resources.GetString("CHKREV_rudder.ToolTip"));
this.CHKREV_rudder.UseVisualStyleBackColor = true;
this.CHKREV_rudder.CheckedChanged += new System.EventHandler(this.CHKREV_rudder_CheckedChanged);
//
// GPSrate
//
- resources.ApplyResources(this.GPSrate, "GPSrate");
this.GPSrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.GPSrate.FormattingEnabled = true;
this.GPSrate.Items.AddRange(new object[] {
@@ -159,8 +155,8 @@
resources.GetString("GPSrate.Items5"),
resources.GetString("GPSrate.Items6"),
resources.GetString("GPSrate.Items7")});
+ resources.ApplyResources(this.GPSrate, "GPSrate");
this.GPSrate.Name = "GPSrate";
- this.toolTip1.SetToolTip(this.GPSrate, resources.GetString("GPSrate.ToolTip"));
this.GPSrate.SelectedIndexChanged += new System.EventHandler(this.GPSrate_SelectedIndexChanged);
this.GPSrate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GPSrate_KeyDown);
this.GPSrate.Leave += new System.EventHandler(this.GPSrate_Leave);
@@ -169,7 +165,6 @@
//
resources.ApplyResources(this.ConnectComPort, "ConnectComPort");
this.ConnectComPort.Name = "ConnectComPort";
- this.toolTip1.SetToolTip(this.ConnectComPort, resources.GetString("ConnectComPort.ToolTip"));
this.ConnectComPort.UseVisualStyleBackColor = true;
this.ConnectComPort.Click += new System.EventHandler(this.ConnectComPort_Click);
//
@@ -177,7 +172,6 @@
//
resources.ApplyResources(this.OutputLog, "OutputLog");
this.OutputLog.Name = "OutputLog";
- this.toolTip1.SetToolTip(this.OutputLog, resources.GetString("OutputLog.ToolTip"));
this.OutputLog.TextChanged += new System.EventHandler(this.OutputLog_TextChanged);
//
// TXT_roll
@@ -185,28 +179,24 @@
resources.ApplyResources(this.TXT_roll, "TXT_roll");
this.TXT_roll.Name = "TXT_roll";
this.TXT_roll.resize = false;
- this.toolTip1.SetToolTip(this.TXT_roll, resources.GetString("TXT_roll.ToolTip"));
//
// TXT_pitch
//
resources.ApplyResources(this.TXT_pitch, "TXT_pitch");
this.TXT_pitch.Name = "TXT_pitch";
this.TXT_pitch.resize = false;
- this.toolTip1.SetToolTip(this.TXT_pitch, resources.GetString("TXT_pitch.ToolTip"));
//
// TXT_heading
//
resources.ApplyResources(this.TXT_heading, "TXT_heading");
this.TXT_heading.Name = "TXT_heading";
this.TXT_heading.resize = false;
- this.toolTip1.SetToolTip(this.TXT_heading, resources.GetString("TXT_heading.ToolTip"));
//
// TXT_wpdist
//
resources.ApplyResources(this.TXT_wpdist, "TXT_wpdist");
this.TXT_wpdist.Name = "TXT_wpdist";
this.TXT_wpdist.resize = false;
- this.toolTip1.SetToolTip(this.TXT_wpdist, resources.GetString("TXT_wpdist.ToolTip"));
//
// currentStateBindingSource
//
@@ -217,41 +207,35 @@
resources.ApplyResources(this.TXT_bererror, "TXT_bererror");
this.TXT_bererror.Name = "TXT_bererror";
this.TXT_bererror.resize = false;
- this.toolTip1.SetToolTip(this.TXT_bererror, resources.GetString("TXT_bererror.ToolTip"));
//
// TXT_alterror
//
resources.ApplyResources(this.TXT_alterror, "TXT_alterror");
this.TXT_alterror.Name = "TXT_alterror";
this.TXT_alterror.resize = false;
- this.toolTip1.SetToolTip(this.TXT_alterror, resources.GetString("TXT_alterror.ToolTip"));
//
// TXT_lat
//
resources.ApplyResources(this.TXT_lat, "TXT_lat");
this.TXT_lat.Name = "TXT_lat";
this.TXT_lat.resize = false;
- this.toolTip1.SetToolTip(this.TXT_lat, resources.GetString("TXT_lat.ToolTip"));
//
// TXT_long
//
resources.ApplyResources(this.TXT_long, "TXT_long");
this.TXT_long.Name = "TXT_long";
this.TXT_long.resize = false;
- this.toolTip1.SetToolTip(this.TXT_long, resources.GetString("TXT_long.ToolTip"));
//
// TXT_alt
//
resources.ApplyResources(this.TXT_alt, "TXT_alt");
this.TXT_alt.Name = "TXT_alt";
this.TXT_alt.resize = false;
- this.toolTip1.SetToolTip(this.TXT_alt, resources.GetString("TXT_alt.ToolTip"));
//
// SaveSettings
//
resources.ApplyResources(this.SaveSettings, "SaveSettings");
this.SaveSettings.Name = "SaveSettings";
- this.toolTip1.SetToolTip(this.SaveSettings, resources.GetString("SaveSettings.ToolTip"));
this.SaveSettings.UseVisualStyleBackColor = true;
this.SaveSettings.Click += new System.EventHandler(this.SaveSettings_Click);
//
@@ -278,32 +262,27 @@
resources.ApplyResources(this.TXT_servoroll, "TXT_servoroll");
this.TXT_servoroll.Name = "TXT_servoroll";
this.TXT_servoroll.resize = false;
- this.toolTip1.SetToolTip(this.TXT_servoroll, resources.GetString("TXT_servoroll.ToolTip"));
//
// TXT_servopitch
//
resources.ApplyResources(this.TXT_servopitch, "TXT_servopitch");
this.TXT_servopitch.Name = "TXT_servopitch";
this.TXT_servopitch.resize = false;
- this.toolTip1.SetToolTip(this.TXT_servopitch, resources.GetString("TXT_servopitch.ToolTip"));
//
// TXT_servorudder
//
resources.ApplyResources(this.TXT_servorudder, "TXT_servorudder");
this.TXT_servorudder.Name = "TXT_servorudder";
this.TXT_servorudder.resize = false;
- this.toolTip1.SetToolTip(this.TXT_servorudder, resources.GetString("TXT_servorudder.ToolTip"));
//
// TXT_servothrottle
//
resources.ApplyResources(this.TXT_servothrottle, "TXT_servothrottle");
this.TXT_servothrottle.Name = "TXT_servothrottle";
this.TXT_servothrottle.resize = false;
- this.toolTip1.SetToolTip(this.TXT_servothrottle, resources.GetString("TXT_servothrottle.ToolTip"));
//
// panel1
//
- resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.label2);
@@ -311,40 +290,35 @@
this.panel1.Controls.Add(this.TXT_lat);
this.panel1.Controls.Add(this.TXT_long);
this.panel1.Controls.Add(this.TXT_alt);
+ resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
- this.toolTip1.SetToolTip(this.panel1, resources.GetString("panel1.ToolTip"));
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
this.label4.resize = false;
- this.toolTip1.SetToolTip(this.label4, resources.GetString("label4.ToolTip"));
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
this.label3.resize = false;
- this.toolTip1.SetToolTip(this.label3, resources.GetString("label3.ToolTip"));
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
this.label2.resize = false;
- this.toolTip1.SetToolTip(this.label2, resources.GetString("label2.ToolTip"));
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
this.label1.resize = false;
- this.toolTip1.SetToolTip(this.label1, resources.GetString("label1.ToolTip"));
//
// panel2
//
- resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.label30);
this.panel2.Controls.Add(this.TXT_yaw);
this.panel2.Controls.Add(this.label11);
@@ -354,75 +328,65 @@
this.panel2.Controls.Add(this.TXT_roll);
this.panel2.Controls.Add(this.TXT_pitch);
this.panel2.Controls.Add(this.TXT_heading);
+ resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
- this.toolTip1.SetToolTip(this.panel2, resources.GetString("panel2.ToolTip"));
//
// label30
//
resources.ApplyResources(this.label30, "label30");
this.label30.Name = "label30";
this.label30.resize = false;
- this.toolTip1.SetToolTip(this.label30, resources.GetString("label30.ToolTip"));
//
// TXT_yaw
//
resources.ApplyResources(this.TXT_yaw, "TXT_yaw");
this.TXT_yaw.Name = "TXT_yaw";
this.TXT_yaw.resize = false;
- this.toolTip1.SetToolTip(this.TXT_yaw, resources.GetString("TXT_yaw.ToolTip"));
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
this.label11.resize = false;
- this.toolTip1.SetToolTip(this.label11, resources.GetString("label11.ToolTip"));
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
this.label7.resize = false;
- this.toolTip1.SetToolTip(this.label7, resources.GetString("label7.ToolTip"));
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
this.label6.resize = false;
- this.toolTip1.SetToolTip(this.label6, resources.GetString("label6.ToolTip"));
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
this.label5.resize = false;
- this.toolTip1.SetToolTip(this.label5, resources.GetString("label5.ToolTip"));
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
this.label8.resize = false;
- this.toolTip1.SetToolTip(this.label8, resources.GetString("label8.ToolTip"));
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
this.label9.resize = false;
- this.toolTip1.SetToolTip(this.label9, resources.GetString("label9.ToolTip"));
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
this.label10.resize = false;
- this.toolTip1.SetToolTip(this.label10, resources.GetString("label10.ToolTip"));
//
// panel3
//
- resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.label16);
this.panel3.Controls.Add(this.label15);
this.panel3.Controls.Add(this.label14);
@@ -432,47 +396,41 @@
this.panel3.Controls.Add(this.TXT_servopitch);
this.panel3.Controls.Add(this.TXT_servorudder);
this.panel3.Controls.Add(this.TXT_servothrottle);
+ resources.ApplyResources(this.panel3, "panel3");
this.panel3.Name = "panel3";
- this.toolTip1.SetToolTip(this.panel3, resources.GetString("panel3.ToolTip"));
//
// label16
//
resources.ApplyResources(this.label16, "label16");
this.label16.Name = "label16";
this.label16.resize = false;
- this.toolTip1.SetToolTip(this.label16, resources.GetString("label16.ToolTip"));
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
this.label15.resize = false;
- this.toolTip1.SetToolTip(this.label15, resources.GetString("label15.ToolTip"));
//
// label14
//
resources.ApplyResources(this.label14, "label14");
this.label14.Name = "label14";
this.label14.resize = false;
- this.toolTip1.SetToolTip(this.label14, resources.GetString("label14.ToolTip"));
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
this.label13.resize = false;
- this.toolTip1.SetToolTip(this.label13, resources.GetString("label13.ToolTip"));
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
this.label12.resize = false;
- this.toolTip1.SetToolTip(this.label12, resources.GetString("label12.ToolTip"));
//
// panel4
//
- resources.ApplyResources(this.panel4, "panel4");
this.panel4.Controls.Add(this.label20);
this.panel4.Controls.Add(this.label19);
this.panel4.Controls.Add(this.TXT_control_mode);
@@ -484,57 +442,50 @@
this.panel4.Controls.Add(this.TXT_wpdist);
this.panel4.Controls.Add(this.TXT_bererror);
this.panel4.Controls.Add(this.TXT_alterror);
+ resources.ApplyResources(this.panel4, "panel4");
this.panel4.Name = "panel4";
- this.toolTip1.SetToolTip(this.panel4, resources.GetString("panel4.ToolTip"));
//
// label20
//
resources.ApplyResources(this.label20, "label20");
this.label20.Name = "label20";
this.label20.resize = false;
- this.toolTip1.SetToolTip(this.label20, resources.GetString("label20.ToolTip"));
//
// label19
//
resources.ApplyResources(this.label19, "label19");
this.label19.Name = "label19";
this.label19.resize = false;
- this.toolTip1.SetToolTip(this.label19, resources.GetString("label19.ToolTip"));
//
// TXT_control_mode
//
resources.ApplyResources(this.TXT_control_mode, "TXT_control_mode");
this.TXT_control_mode.Name = "TXT_control_mode";
this.TXT_control_mode.resize = false;
- this.toolTip1.SetToolTip(this.TXT_control_mode, resources.GetString("TXT_control_mode.ToolTip"));
//
// TXT_WP
//
resources.ApplyResources(this.TXT_WP, "TXT_WP");
this.TXT_WP.Name = "TXT_WP";
this.TXT_WP.resize = false;
- this.toolTip1.SetToolTip(this.TXT_WP, resources.GetString("TXT_WP.ToolTip"));
//
// label18
//
resources.ApplyResources(this.label18, "label18");
this.label18.Name = "label18";
this.label18.resize = false;
- this.toolTip1.SetToolTip(this.label18, resources.GetString("label18.ToolTip"));
//
// label17
//
resources.ApplyResources(this.label17, "label17");
this.label17.Name = "label17";
this.label17.resize = false;
- this.toolTip1.SetToolTip(this.label17, resources.GetString("label17.ToolTip"));
//
// panel5
//
- resources.ApplyResources(this.panel5, "panel5");
this.panel5.Controls.Add(this.ConnectComPort);
+ resources.ApplyResources(this.panel5, "panel5");
this.panel5.Name = "panel5";
- this.toolTip1.SetToolTip(this.panel5, resources.GetString("panel5.ToolTip"));
//
// zg1
//
@@ -547,7 +498,6 @@
this.zg1.ScrollMinX = 0D;
this.zg1.ScrollMinY = 0D;
this.zg1.ScrollMinY2 = 0D;
- this.toolTip1.SetToolTip(this.zg1, resources.GetString("zg1.ToolTip"));
//
// timer1
//
@@ -555,7 +505,6 @@
//
// panel6
//
- resources.ApplyResources(this.panel6, "panel6");
this.panel6.Controls.Add(this.label28);
this.panel6.Controls.Add(this.label29);
this.panel6.Controls.Add(this.label27);
@@ -568,42 +517,37 @@
this.panel6.Controls.Add(this.TXT_ruddergain);
this.panel6.Controls.Add(this.TXT_pitchgain);
this.panel6.Controls.Add(this.TXT_rollgain);
+ resources.ApplyResources(this.panel6, "panel6");
this.panel6.Name = "panel6";
- this.toolTip1.SetToolTip(this.panel6, resources.GetString("panel6.ToolTip"));
//
// label28
//
resources.ApplyResources(this.label28, "label28");
this.label28.Name = "label28";
this.label28.resize = false;
- this.toolTip1.SetToolTip(this.label28, resources.GetString("label28.ToolTip"));
//
// label29
//
resources.ApplyResources(this.label29, "label29");
this.label29.Name = "label29";
this.label29.resize = false;
- this.toolTip1.SetToolTip(this.label29, resources.GetString("label29.ToolTip"));
//
// label27
//
resources.ApplyResources(this.label27, "label27");
this.label27.Name = "label27";
this.label27.resize = false;
- this.toolTip1.SetToolTip(this.label27, resources.GetString("label27.ToolTip"));
//
// label25
//
resources.ApplyResources(this.label25, "label25");
this.label25.Name = "label25";
this.label25.resize = false;
- this.toolTip1.SetToolTip(this.label25, resources.GetString("label25.ToolTip"));
//
// TXT_throttlegain
//
resources.ApplyResources(this.TXT_throttlegain, "TXT_throttlegain");
this.TXT_throttlegain.Name = "TXT_throttlegain";
- this.toolTip1.SetToolTip(this.TXT_throttlegain, resources.GetString("TXT_throttlegain.ToolTip"));
this.TXT_throttlegain.TextChanged += new System.EventHandler(this.TXT_throttlegain_TextChanged);
//
// label24
@@ -611,48 +555,41 @@
resources.ApplyResources(this.label24, "label24");
this.label24.Name = "label24";
this.label24.resize = false;
- this.toolTip1.SetToolTip(this.label24, resources.GetString("label24.ToolTip"));
//
// label23
//
resources.ApplyResources(this.label23, "label23");
this.label23.Name = "label23";
this.label23.resize = false;
- this.toolTip1.SetToolTip(this.label23, resources.GetString("label23.ToolTip"));
//
// label22
//
resources.ApplyResources(this.label22, "label22");
this.label22.Name = "label22";
this.label22.resize = false;
- this.toolTip1.SetToolTip(this.label22, resources.GetString("label22.ToolTip"));
//
// label21
//
resources.ApplyResources(this.label21, "label21");
this.label21.Name = "label21";
this.label21.resize = false;
- this.toolTip1.SetToolTip(this.label21, resources.GetString("label21.ToolTip"));
//
// TXT_ruddergain
//
resources.ApplyResources(this.TXT_ruddergain, "TXT_ruddergain");
this.TXT_ruddergain.Name = "TXT_ruddergain";
- this.toolTip1.SetToolTip(this.TXT_ruddergain, resources.GetString("TXT_ruddergain.ToolTip"));
this.TXT_ruddergain.TextChanged += new System.EventHandler(this.TXT_ruddergain_TextChanged);
//
// TXT_pitchgain
//
resources.ApplyResources(this.TXT_pitchgain, "TXT_pitchgain");
this.TXT_pitchgain.Name = "TXT_pitchgain";
- this.toolTip1.SetToolTip(this.TXT_pitchgain, resources.GetString("TXT_pitchgain.ToolTip"));
this.TXT_pitchgain.TextChanged += new System.EventHandler(this.TXT_pitchgain_TextChanged);
//
// TXT_rollgain
//
resources.ApplyResources(this.TXT_rollgain, "TXT_rollgain");
this.TXT_rollgain.Name = "TXT_rollgain";
- this.toolTip1.SetToolTip(this.TXT_rollgain, resources.GetString("TXT_rollgain.ToolTip"));
this.TXT_rollgain.TextChanged += new System.EventHandler(this.TXT_rollgain_TextChanged);
//
// label26
@@ -660,13 +597,11 @@
resources.ApplyResources(this.label26, "label26");
this.label26.Name = "label26";
this.label26.resize = false;
- this.toolTip1.SetToolTip(this.label26, resources.GetString("label26.ToolTip"));
//
// CHKdisplayall
//
resources.ApplyResources(this.CHKdisplayall, "CHKdisplayall");
this.CHKdisplayall.Name = "CHKdisplayall";
- this.toolTip1.SetToolTip(this.CHKdisplayall, resources.GetString("CHKdisplayall.ToolTip"));
this.CHKdisplayall.UseVisualStyleBackColor = true;
this.CHKdisplayall.CheckedChanged += new System.EventHandler(this.CHKdisplayall_CheckedChanged);
//
@@ -676,7 +611,6 @@
this.CHKgraphroll.Checked = true;
this.CHKgraphroll.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHKgraphroll.Name = "CHKgraphroll";
- this.toolTip1.SetToolTip(this.CHKgraphroll, resources.GetString("CHKgraphroll.ToolTip"));
this.CHKgraphroll.UseVisualStyleBackColor = true;
//
// CHKgraphpitch
@@ -685,7 +619,6 @@
this.CHKgraphpitch.Checked = true;
this.CHKgraphpitch.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHKgraphpitch.Name = "CHKgraphpitch";
- this.toolTip1.SetToolTip(this.CHKgraphpitch, resources.GetString("CHKgraphpitch.ToolTip"));
this.CHKgraphpitch.UseVisualStyleBackColor = true;
//
// CHKgraphrudder
@@ -694,7 +627,6 @@
this.CHKgraphrudder.Checked = true;
this.CHKgraphrudder.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHKgraphrudder.Name = "CHKgraphrudder";
- this.toolTip1.SetToolTip(this.CHKgraphrudder, resources.GetString("CHKgraphrudder.ToolTip"));
this.CHKgraphrudder.UseVisualStyleBackColor = true;
//
// CHKgraphthrottle
@@ -703,14 +635,12 @@
this.CHKgraphthrottle.Checked = true;
this.CHKgraphthrottle.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHKgraphthrottle.Name = "CHKgraphthrottle";
- this.toolTip1.SetToolTip(this.CHKgraphthrottle, resources.GetString("CHKgraphthrottle.ToolTip"));
this.CHKgraphthrottle.UseVisualStyleBackColor = true;
//
// but_advsettings
//
resources.ApplyResources(this.but_advsettings, "but_advsettings");
this.but_advsettings.Name = "but_advsettings";
- this.toolTip1.SetToolTip(this.but_advsettings, resources.GetString("but_advsettings.ToolTip"));
this.but_advsettings.UseVisualStyleBackColor = true;
this.but_advsettings.Click += new System.EventHandler(this.but_advsettings_Click);
//
@@ -718,14 +648,12 @@
//
resources.ApplyResources(this.chkSensor, "chkSensor");
this.chkSensor.Name = "chkSensor";
- this.toolTip1.SetToolTip(this.chkSensor, resources.GetString("chkSensor.ToolTip"));
this.chkSensor.UseVisualStyleBackColor = true;
//
// CHK_quad
//
resources.ApplyResources(this.CHK_quad, "CHK_quad");
this.CHK_quad.Name = "CHK_quad";
- this.toolTip1.SetToolTip(this.CHK_quad, resources.GetString("CHK_quad.ToolTip"));
this.CHK_quad.UseVisualStyleBackColor = true;
this.CHK_quad.CheckedChanged += new System.EventHandler(this.CHK_quad_CheckedChanged);
//
@@ -733,7 +661,6 @@
//
resources.ApplyResources(this.BUT_startfgquad, "BUT_startfgquad");
this.BUT_startfgquad.Name = "BUT_startfgquad";
- this.toolTip1.SetToolTip(this.BUT_startfgquad, resources.GetString("BUT_startfgquad.ToolTip"));
this.BUT_startfgquad.UseVisualStyleBackColor = true;
this.BUT_startfgquad.Click += new System.EventHandler(this.BUT_startfgquad_Click);
//
@@ -741,7 +668,6 @@
//
resources.ApplyResources(this.BUT_startfgplane, "BUT_startfgplane");
this.BUT_startfgplane.Name = "BUT_startfgplane";
- this.toolTip1.SetToolTip(this.BUT_startfgplane, resources.GetString("BUT_startfgplane.ToolTip"));
this.BUT_startfgplane.UseVisualStyleBackColor = true;
this.BUT_startfgplane.Click += new System.EventHandler(this.BUT_startfgplane_Click);
//
@@ -749,7 +675,6 @@
//
resources.ApplyResources(this.BUT_startxplane, "BUT_startxplane");
this.BUT_startxplane.Name = "BUT_startxplane";
- this.toolTip1.SetToolTip(this.BUT_startxplane, resources.GetString("BUT_startxplane.ToolTip"));
this.BUT_startxplane.UseVisualStyleBackColor = true;
this.BUT_startxplane.Click += new System.EventHandler(this.BUT_startxplane_Click);
//
@@ -757,7 +682,6 @@
//
resources.ApplyResources(this.CHK_heli, "CHK_heli");
this.CHK_heli.Name = "CHK_heli";
- this.toolTip1.SetToolTip(this.CHK_heli, resources.GetString("CHK_heli.ToolTip"));
this.CHK_heli.UseVisualStyleBackColor = true;
//
// RAD_aerosimrc
@@ -803,7 +727,6 @@
this.Controls.Add(this.CHKREV_pitch);
this.Controls.Add(this.CHKREV_roll);
this.Name = "Simulation";
- this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.Load += new System.EventHandler(this.Simulation_Load);
((System.ComponentModel.ISupportInitialize)(this.currentStateBindingSource)).EndInit();
this.panel1.ResumeLayout(false);
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.resx b/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.resx
index 8d79ea9ad7..5d542ad283 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.resx
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Simulation.resx
@@ -118,1210 +118,312 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 3
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
-
- 45, 13
-
-
-
-
-
-
-
-
- 1000
-
-
- 126, 37
-
-
- FlightGear
-
-
- 47, 13
-
-
- label26
-
-
- $this
-
-
- 128, 23
-
-
- Plane IMU
-
-
- CHKgraphthrottle
-
-
- 24
-
-
- 5
-
-
- label27
-
-
- Pitch
-
-
- 25, 13
-
-
- ConnectComPort
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 7, 104
-
-
- 5
-
-
- 508, 330
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 43
-
-
- 10
-
-
- 67, 24
-
-
- Roll
-
-
- 8
-
-
- 41
-
-
- 9
-
-
- panel1
-
-
- Reverse Pitch
-
-
- Show Rudder
-
-
- panel2
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 19
-
-
- panel5
-
-
- 67, 76
-
-
- 11
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- $this
-
-
- 7
-
-
- 538, 36
-
-
- 75, 74
-
-
- 500
-
-
- 39
-
-
- Start FG Quad
-
-
- 2
-
-
- 17
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- label22
-
-
- 6
-
-
- panel2
-
-
- 2
-
-
- 6
-
-
- 100, 20
-
-
- $this
-
-
- $this
-
-
- 100, 20
-
-
- $this
-
-
- X-plane
-
-
- TXT_heading
-
-
- CHKdisplayall
-
-
- label23
-
-
- toolTip1
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 0
-
-
- Longitude
-
-
- 4
-
-
- panel6
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- label28
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 7, 52
-
-
-
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 68, 13
-
-
- 64, 34
-
-
- but_advsettings
-
-
- 7, 78
-
-
- 17
-
-
-
- Bottom, Left
-
-
- 1
-
-
- 6
-
-
- 14
-
-
- 7, 27
-
-
- 0
-
-
- label29
-
-
- 6
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 2
-
-
-
-
-
- 73, 17
-
-
- Can do Plane and Quad with model
-
-
- 99999
-
-
-
-
-
- Quad
-
-
- panel2
-
-
-
-
-
- 23
-
-
- Latitude
-
-
- CHKREV_roll
-
-
- $this
-
-
- 16
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- True
-
-
- Sensor
-
-
- Simulation
-
-
- 1
-
-
-
-
-
- Reverse Rudder
-
-
- label14
-
-
-
-
-
- Save Settings
-
-
- Plane GPS
-
-
- 7
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- True
-
-
- label15
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- TXT_servothrottle
-
-
- 110, 709
-
-
- 566, 66
-
-
- Show Roll
-
-
-
-
-
- 91, 17
-
-
- 72, 104
-
-
- 0
-
-
- Pitch
-
-
- 67, 102
-
-
- TXT_bererror
-
-
- 207, 709
-
-
- 27
-
-
- BUT_startxplane
-
-
-
-
-
- 16
-
-
- $this
-
-
- RAD_softFlightGear
-
-
- 2
-
-
- CHKgraphroll
-
-
- TXT_servorudder
-
-
- 30000
-
-
- 5
-
-
- panel2
-
-
- 40
-
-
-
-
-
- panel6
-
-
- panel1
-
-
- 23
-
-
-
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- These
-
-
- 74, 17
-
-
- 2
-
-
- True
-
-
- Start Xplane
-
-
- 63, 20
-
-
-
-
-
- $this
-
-
- 0
-
-
- 100, 20
-
-
- 7, 78
-
-
- 18
-
-
- 4
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- panel3
-
-
- label11
-
-
-
-
-
- 19
-
-
- 0
-
-
- 13, 709
-
-
-
-
-
- panel3
-
-
- Show Pitch
-
-
- 16
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel3
-
-
- panel3
-
-
- 13, 294
-
-
- $this
-
-
- 22
-
-
- 27
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 17
-
-
- label16
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- TXT_rollgain
-
-
- 126, 63
-
-
- 6, 13
-
-
- panel3
-
-
- 213, 10
-
-
- 23
-
-
- 100, 20
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
-
-
-
-
-
-
- $this
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- label17
-
-
- $this
-
-
-
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 8
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 566, 368
-
-
-
-
-
- True
-
-
- 12, 172
-
-
- $this
-
-
- panel6
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- NoControl
-
-
- 566, 186
-
-
- True
-
-
- TXT_yaw
-
-
-
-
-
- panel2
-
-
-
-
-
- 10, 27
-
-
- panel6
-
-
- 4
-
-
- panel6
-
-
- panel4
-
-
- Throttle
-
-
- 69, 13
-
-
- label12
-
-
- TXT_throttlegain
-
-
- 45, 20
-
-
- 6
-
-
- Show Throttle
-
-
- 3
-
-
- 4, 78
-
-
- label2
-
-
-
-
-
- panel5
-
-
- panel1
-
-
- label6
-
-
-
-
-
- 44
-
-
-
-
-
- panel4
-
-
- 2, 7
-
-
- Start FG Plane
-
-
- 28, 13
-
-
- 178, 52
-
-
- 104, 17
-
-
- 48, 13
-
-
- ZedGraph.ZedGraphControl, ZedGraph, Version=5.1.2.878, Culture=neutral, PublicKeyToken=02a83cbd123fcd60
-
-
- 7
-
-
- 10
-
-
- 37, 13
-
-
-
-
-
- ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- panel3
-
-
- System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 9
-
-
- Yaw
-
-
- SIM only
-
-
- True
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- panel2
-
-
- 4
-
-
- 299, 10
-
True
-
- $this
+
+
+ 213, 10
-
- 1
-
-
- Altitude
-
-
- 30
-
-
- label19
-
-
- 8
-
-
- Yaw
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 67, 45
-
-
- 5
-
-
-
-
-
- NoControl
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- panel6
-
-
- 47
-
-
- Sim Link Start/Stop
-
-
- $this
-
-
- 25, 13
-
-
- True
-
-
-
-
-
- True
-
-
- currentStateBindingSource
-
-
- 10, 78
-
-
- Bottom, Left
-
-
- 36
+
+ 87, 17
1
-
+
+ Reverse Roll
+
+
+ CHKREV_roll
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
$this
-
- panel1
-
-
- 92, 21
-
-
- 7
-
-
- 304, 709
-
-
- 22, 13
-
-
- WPDist
-
-
- 14
-
-
- 25
-
29
-
- WP
+
+ True
-
- panel3
+
+ 299, 10
-
- 566, 146
+
+ 93, 17
-
- panel1
+
+ 2
-
- 6
+
+ Reverse Pitch
-
- are
+
+ CHKREV_pitch
-
- 4, 52
-
-
- $this
-
-
- GPS Refresh Rate
-
-
- 7, 52
-
-
- 43, 13
-
-
- 178, 100
-
-
- 0
-
-
-
-
-
- BUT_startfgquad
-
-
-
-
-
- panel4
-
-
- 7, 100
-
-
- 13
-
-
- 126, 76
-
-
- 197, 294
-
-
- 27
-
-
- 178, 122
-
-
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TXT_long
+
+ $this
-
- 21
+
+ 28
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
-
- panel4
+
+ 398, 10
-
- 13
+
+ 104, 17
-
- 59, 17
+
+ 3
-
- 10000
-
-
- 100, 20
-
-
- 100, 20
-
-
- 45
-
-
- label25
-
-
- Heli
-
-
- 50, 13
-
-
- 52, 17
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- 24
-
-
- 50, 8
-
-
- panel6
-
-
- 9
-
-
-
-
-
- 22
-
-
- NoControl
-
-
- NoControl
-
-
- 266, 40
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ Reverse Rudder
CHKREV_rudder
-
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
$this
-
-
+
+ 27
-
- 28
+
+ 100
-
+
+ 200
+
+
+ 250
+
+
+ 333
+
+
+ 500
+
+
+ 1000
+
+
+ 30000
+
+
+ 99999
+
+
+ 538, 36
+
+
+ 92, 21
+
+
+ 4
+
+
+ GPSrate
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
26
-
- panel6
+
+ 26, 13
-
- panel6
+
+ 128, 23
-
- 29
+
+ 5
-
- 31, 13
+
+ Sim Link Start/Stop
-
- 197, 40
+
+ ConnectComPort
-
- Bottom, Left
+
+ ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
-
- 702, 283
+
+ panel5
-
+
+ 0
+
+
+ Lucida Console, 8.25pt
+
+
+ 197, 66
+
+
+ 363, 208
+
+
+ 6
+
+
-
- 3
+
+ OutputLog
-
- 4, 104
+
+ System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 59, 13
+
+ $this
-
- True
+
+ 25
-
- 19
+
+ 67, 22
-
- AeroSimRC
+
+ 100, 20
-
-
+
+ 7
-
- 722, 742
+
+ TXT_roll
+
+
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
+
+
+ panel2
+
+
+ 6
+
+
+ 67, 45
+
+
+ 100, 20
8
-
- 100, 20
+
+ TXT_pitch
-
- panel6
-
-
- 81, 13
-
-
- Bottom, Left
-
-
- 10000
-
-
- 83, 13
-
-
- 2
-
-
- 75, 24
-
-
- 169, 13
-
-
- 11
-
-
- panel1
-
-
- System.Windows.Forms.Timer, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- panel6
+
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c
panel2
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 7
-
- Display All
+
+ 67, 70
-
- 25, 13
+
+ 100, 20
-
- 56, 13
+
+ 9
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+