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 + + TXT_heading - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - Throttle Gain + + panel2 - - + + 8 + + + 75, 24 + + + 100, 20 + + + 10 + + + TXT_wpdist + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 8 + + + 104, 17 + + + 75, 50 + + + 100, 20 + + + 11 + + + TXT_bererror + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 9 + + + 75, 76 + + + 100, 20 + + + 12 + + + TXT_alterror + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 10 67, 23 @@ -1329,1003 +431,1670 @@ 100, 20 - - Can do Plane/Heli/Quads + + 13 - - label30 + + TXT_lat - - TXT_pitch + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - 3 - - - 1 - - - TXT_servoroll - - - Reverse Roll - - - Pitch Gain - - - $this - - - 10 - - - 2 - - - 26, 13 - - - 566, 330 - - - Can Do Plane/Quad with plugin - - - 0 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - $this - - - 67, 22 - - - True - - - 7, 29 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 67, 50 - - - 15 - - - 178, 122 - - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 95, 13 - - - 3 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - panel2 - - - panel4 - - - - - - 3 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 8 - - - 100 - - - NoControl - - - 333 - - - 363, 208 - - + panel1 - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 382, 294 - - - 67, 70 - - - 7 - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 75, 100 - - - - - - - - - 12 - - - 21 - - - 112, 99 - - - 31, 13 - - - chkSensor - - - 7, 77 - - - 42 - - - 24 - - - RAD_softXplanes - - - TXT_alterror - - - 19 - - - - - - - - - 45, 20 - - - - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - Altitude ERR - - - - - - 178, 116 - - - TXT_servopitch - - - label4 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label8 - - - 566, 203 - - - 46 - 4 - - TXT_pitchgain + + 67, 49 - - 12 + + 100, 20 - - + + 14 - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + 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 - - 67, 93 + + panel1 - - 10, 52 + + 5 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 67, 75 - - 44, 17 + + 100, 20 - - panel2 + + 15 - - + + TXT_alt - - GPSrate + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - + + panel1 + + + 6 + + + 566, 330 + + + 64, 34 + + + 16 + + + Save Settings + + + SaveSettings + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + $this - - 535, 9 + + 24 - - 57, 13 + + True - - panel2 + + 197, 40 - - 31 + + 61, 17 - - + + 17 - - 9 + + X-plane - - + + 301, 17 + + + Can Do Plane/Quad with plugin - - 54, 13 + + RAD_softXplanes + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 23 + + + True + + + 266, 40 + + + 73, 17 + + + 18 + + + FlightGear + + + Can do Plane and Quad with model + + + RAD_softFlightGear + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 22 + + + 67, 24 100, 20 - - $this + + 19 - - 74, 17 + + TXT_servoroll - - BUT_startfgplane + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - 13, 5 + + panel3 - - 1 + + 5 - - 87, 17 + + 67, 50 - - $this + + 100, 20 - - $this + + 20 - + + TXT_servopitch + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + 6 - - 25 + + 67, 76 - - 67, 13 + + 100, 20 - - Roll Gain + + 21 - - + + TXT_servorudder - + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 7 + + + 67, 102 + + + 100, 20 + + + 22 + + + TXT_servothrottle + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 8 + + + 60, 3 + + + 59, 13 + + + 19 + + + Plane GPS + + + label4 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel1 + + + 0 + + + 7, 78 + + + 42, 13 + + + 18 + + + Altitude + + + label3 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel1 + + + 1 + + + 7, 52 + + + 54, 13 + + + 17 + + + Longitude + + + label2 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel1 + + + 2 + + + 7, 26 + + + 45, 13 + + + 16 + + + Latitude + + + label1 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel1 + + + 3 + + + 13, 66 + + + 178, 100 + + + 23 + + + panel1 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - 345, 40 + + 21 - + + 7, 100 + + + 28, 13 + + + 21 + + + Yaw + + + label30 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel2 + + + 0 + + + 67, 93 + + 100, 20 20 - - + + TXT_yaw - - 10000 + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - Rudder Gain - - - Advanced IP Settings - - - 64, 34 - - - 75, 48 - - - Lucida Console, 8.25pt - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 79, 17 - - - 3 - - - panel3 - - - 7, 52 - - - 45, 20 - - - Heading - - - 5 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 60, 4 - - - 398, 10 - - - 9 - - - - - - - - - 20 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - Top, Bottom, Left, Right - - - TXT_WP - - - 5 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 64, 34 - - - NOTE: - - - 7 - - - 20 - - - 26 - - - - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label10 - - - 11 - - - 10 - - - - - - 18 - - - 200 - - - 67, 49 - - - TXT_roll - - - 64, 34 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - CHKgraphpitch - - - 19 - - - 68, 13 - - - 26 - - - label1 - - - - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 15 - - - label5 - - - $this - - - True - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel1 - - - - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - 75, 23 - - - 566, 219 - - - 21 - - - $this - - - 64, 47 - - - RAD_aerosimrc - - - - - - 75, 76 - - - True - - - 23 - - - 28 - - - 7, 26 - - - 16 - - - - - - 566, 106 - - - TXT_control_mode - - - zg1 - - - 4 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 60, 3 - - - - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - TXT_wpdist - - - 50, 8 - - - 18 - - - True - - - Simulator Authority - For diff planes - - - - - - 75, 50 - - - timer1 - - - 2 - - - label3 - - - panel4 - - - 28, 13 - - - label7 - - - $this - - - - - - 100, 20 - - - 67, 75 - - - Ardupilot Output - - - - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 456, 41 - - - - - - 15 - - - 178, 122 - - - 43, 13 - - - 21 - - - $this - - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 197, 66 - - - - - - 10000 - - - 80, 17 - - - panel4 + + panel2 1 - - 10, 104 + + 60, 4 - - 4, 27 + + 57, 13 - - 38, 98 + + 19 + + + Plane IMU + + + label11 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel2 + + + 2 + + + 7, 77 + + + 47, 13 + + + 15 + + + Heading + + + label7 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel2 + + + 3 + + + 7, 52 + + + 31, 13 + + + 14 + + + Pitch + + + label6 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel2 + + + 4 + + + 7, 29 + + + 25, 13 + + + 13 + + + Roll + + + label5 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel2 + + + 5 + + + 12, 172 + + + 178, 116 + + + 24 + + + panel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 20 + + + 7, 27 + + + 43, 13 + + + 16 + + + WPDist + + + label8 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 7 + + + 7, 52 + + + 69, 13 + + + 17 + + + Bearing ERR label9 - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - + + panel4 + + + 6 + + + 7, 78 + + + 68, 13 + + + 18 + + + Altitude ERR + + + label10 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 5 + + + 50, 8 + + + 83, 13 + + + 27 + + + Ardupilot Output + + + label16 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 0 + + + 10, 104 + + + 43, 13 + + + 26 + + + Throttle + + + label15 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 1 + + + 10, 78 + + + 28, 13 + + + 25 + + + Yaw + + + label14 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 2 + + + 10, 52 + + + 31, 13 + + + 24 + + + Pitch + + + label13 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 3 + + + 10, 27 + + + 25, 13 + + + 23 + + + Roll + + + label12 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel3 + + + 4 + + + 13, 294 + + + 178, 122 + + + 25 + + + panel3 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 19 + + + 72, 104 + + + 34, 13 + + + 23 + + + Mode + + + label20 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 0 + + + 7, 104 + + + 25, 13 + + + 22 + + + WP + + + label19 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 1 + + + 112, 99 + + + 63, 20 + + + 21 + + + TXT_control_mode + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 2 + + + 38, 98 + + + 28, 20 + + + 20 + + + TXT_WP + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 3 + + + 50, 8 + + + 81, 13 + + + 19 + + + Autopilot Status + + + label18 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel4 + + + 4 + + + 197, 294 + + + 178, 122 + + + 26 + + + panel4 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this 18 - - 93, 17 + + 535, 9 - - + + 95, 13 - - + + 27 - - 4 + + GPS Refresh Rate - - panel4 + + label17 - - TXT_alt + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - CHK_heli + + $this - - panel3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 28, 20 - - - 22 - - - label24 - - - 42, 13 - - - CHK_quad - - - 25 - - - 1 - - - - - - label13 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - - - - panel6 - - - 45, 20 - - - 38 - - - CHKgraphrudder - - - 92, 17 - - - label18 - - - 100, 20 - - - 43, 13 - - - TXT_lat - - - 100, 20 - - - 5 - - - panel4 - - - 33 - - - TXT_ruddergain - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - panel4 - - + 17 - - 250 + + 13, 5 - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + 178, 52 - - 20 + + 28 - - 34, 13 + + panel5 - - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + $this - - + + 16 - - CHKREV_pitch - - - 48 - - - 6 - - - 100, 20 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel6 - - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 0 - - - - - - 4 - - - Mode - - - 8 - - - 8 - - - SaveSettings + + + Top, Bottom, Left, Right 12, 420 - - 32 + + 702, 283 - - panel4 + + 29 - - Roll + + zg1 - - 13, 66 + + ZedGraph.ZedGraphControl, ZedGraph, Version=5.1.2.878, Culture=neutral, PublicKeyToken=02a83cbd123fcd60 - - ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + $this - - - - - label20 - - - 3 - - - - - - Bearing ERR - - - - - - 7 - - - 14 - - - Autopilot Status - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OutputLog - - - 61, 17 - - - NoControl - - - label21 - - - 37 - - - 13 - - - panel4 - - - 5 + + 15 17, 17 + + 126, 76 + + + 48, 13 + + + 32 + + + SIM only + + + label28 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 0 + + + 126, 37 + + + 43, 13 + + + 33 + + + NOTE: + + + label29 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 1 + + + 126, 63 + + + 22, 13 + + + 31 + + + are + + + label27 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 2 + + + 4, 104 + + + 68, 13 + + + 8 + + + Throttle Gain + + + label25 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 3 + + + 75, 100 + + + 45, 20 + + + 7 + + + 10000 + + + TXT_throttlegain + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel6 + + + 4 + + + 4, 78 + + + 67, 13 + + + 6 + + + Rudder Gain + + + label24 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 5 + + + 4, 52 + + + 56, 13 + + + 5 + + + Pitch Gain + + + label23 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 6 + + + 4, 27 + + + 50, 13 + + + 4 + + + Roll Gain + + + label22 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 7 + + + 2, 7 + + + 169, 13 + + + 3 + + + Simulator Authority - For diff planes + + + label21 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + panel6 + + + 8 + + + 75, 74 + + + 45, 20 + + + 2 + + + 10000 + + + TXT_ruddergain + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel6 + + + 9 + + + 75, 48 + + + 45, 20 + + + 1 + + + 10000 + + + TXT_pitchgain + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel6 + + + 10 + + + 75, 23 + + + 45, 20 + + + 0 + + + 10000 + + + TXT_rollgain + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel6 + + + 11 + + + 382, 294 + + + 178, 122 + + + 30 + + + panel6 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 14 + + + 508, 330 + + + 37, 13 + + + 9 + + + These + + + label26 + + + ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + $this + + + 13 + + + True + + + 456, 41 + + + 74, 17 + + + 36 + + + Display All + + + CHKdisplayall + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 12 + + + Bottom, Left + + + True + + + 13, 709 + + + 74, 17 + + + 37 + + + Show Roll + + + CHKgraphroll + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 11 + + + Bottom, Left + + + True + + + 110, 709 + + + 80, 17 + + + 38 + + + Show Pitch + + + CHKgraphpitch + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 10 + + + Bottom, Left + + + True + + + 207, 709 + + + 91, 17 + + + 39 + + + Show Rudder + + + CHKgraphrudder + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 9 + + + Bottom, Left + + + True + + + 304, 709 + + + 92, 17 + + + 40 + + + Show Throttle + + + CHKgraphthrottle + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 8 + + + 566, 368 + + + 64, 47 + + + 41 + + + Advanced IP Settings + + + but_advsettings + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + $this + + + 7 + + + True + + + 566, 186 + + + 59, 17 + + + 42 + + + Sensor + + + chkSensor + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + + + True + + + NoControl + + + 566, 203 + + + 52, 17 + + + 43 + + + Quad + + + CHK_quad + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 5 + + + NoControl + + + 566, 66 + + + 64, 34 + + + 44 + + + Start FG Quad + + + BUT_startfgquad + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + $this + + + 4 + + + NoControl + + + 566, 106 + + + 64, 34 + + + 45 + + + Start FG Plane + + + BUT_startfgplane + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + $this + + + 3 + + + NoControl + + + 566, 146 + + + 64, 34 + + + 46 + + + Start Xplane + + + BUT_startxplane + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + $this + + + 2 + + + True + + + NoControl + + + 566, 219 + + + 44, 17 + + + 47 + + + Heli + + + CHK_heli + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + NoControl + + + 345, 40 + + + 79, 17 + + + 48 + + + AeroSimRC + + + Can do Plane/Heli/Quads + + + RAD_aerosimrc + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + True - - 301, 17 - - - 104, 17 - + + 6, 13 + + + 722, 742 + + + currentStateBindingSource + + + System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + timer1 + + + System.Windows.Forms.Timer, 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 + + + Simulation + + + 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/HIL/QuadCopter.cs b/Tools/ArdupilotMegaPlanner/HIL/QuadCopter.cs index 5149771eda..9e33ec5b7a 100644 --- a/Tools/ArdupilotMegaPlanner/HIL/QuadCopter.cs +++ b/Tools/ArdupilotMegaPlanner/HIL/QuadCopter.cs @@ -146,6 +146,11 @@ namespace ArdupilotMega.HIL accel3D += new Vector3d(0, 0, -gravity); accel3D += air_resistance; + Random rand = new Random(); + int fixme; + + //velocity.X += .05 + rand.NextDouble() * .03; + //velocity.Y += .05 + rand.NextDouble() * .03; //# new velocity vector velocity += accel3D * delta_time.TotalSeconds; diff --git a/Tools/ArdupilotMegaPlanner/MAVLink.cs b/Tools/ArdupilotMegaPlanner/MAVLink.cs index 172006310c..396d75f1db 100644 --- a/Tools/ArdupilotMegaPlanner/MAVLink.cs +++ b/Tools/ArdupilotMegaPlanner/MAVLink.cs @@ -473,6 +473,8 @@ namespace ArdupilotMega packetcount++; + + //System.Threading.Thread.Sleep(1); } @@ -818,7 +820,7 @@ namespace ArdupilotMega } } - public bool doCommand(MAV_CMD actionid) + public bool doCommand(MAV_CMD actionid, float p1, float p2, float p3, float p4, float p5, float p6, float p7) { MainV2.givecomport = true; @@ -831,6 +833,14 @@ namespace ArdupilotMega req.command = (ushort)actionid; + req.param1 = p1; + req.param2 = p2; + req.param3 = p3; + req.param4 = p4; + req.param5 = p5; + req.param6 = p6; + req.param7 = p7; + generatePacket(MAVLINK_MSG_ID_COMMAND_LONG, req); DateTime start = DateTime.Now; diff --git a/Tools/ArdupilotMegaPlanner/MainV2.cs b/Tools/ArdupilotMegaPlanner/MainV2.cs index 6d0024a7a6..fafa87f8d9 100644 --- a/Tools/ArdupilotMegaPlanner/MainV2.cs +++ b/Tools/ArdupilotMegaPlanner/MainV2.cs @@ -19,6 +19,7 @@ using System.Speech.Synthesis; using System.Globalization; using System.Threading; using System.Net.Sockets; +using IronPython.Hosting; namespace ArdupilotMega { @@ -37,7 +38,7 @@ namespace ArdupilotMega public static Hashtable config = new Hashtable(); public static bool givecomport = false; public static Firmwares APMFirmware = Firmwares.ArduPlane; - public static bool MAC = false; + public static bool MONO = false; public static bool speechenable = false; public static SpeechSynthesizer talk = new SpeechSynthesizer(); @@ -78,6 +79,11 @@ namespace ArdupilotMega GCSViews.Firmware Firmware; GCSViews.Terminal Terminal; + public void testpython() + { + Console.WriteLine("hello world from c# via python"); + } + public MainV2() { //System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US"); @@ -91,8 +97,17 @@ namespace ArdupilotMega //return; + var engine = Python.CreateEngine(); + var scope = engine.CreateScope(); + + scope.SetVariable("MainV2",this); + Console.WriteLine(DateTime.Now.Millisecond); + engine.CreateScriptSourceFromString("print 'hello world from python'").Execute(scope); + Console.WriteLine(DateTime.Now.Millisecond); + engine.CreateScriptSourceFromString("MainV2.testpython()").Execute(scope); + Console.WriteLine(DateTime.Now.Millisecond); var t = Type.GetType("Mono.Runtime"); - MAC = (t != null); + MONO = (t != null); Form splash = new Splash(); splash.Show(); @@ -146,7 +161,7 @@ namespace ArdupilotMega if (config.ContainsKey("language") && !string.IsNullOrEmpty((string)config["language"])) changelanguage(getcultureinfo((string)config["language"])); - if (!MAC) // windows only + if (!MONO) // windows only { if (MainV2.config["showconsole"] != null && MainV2.config["showconsole"].ToString() == "True") { @@ -208,7 +223,7 @@ namespace ArdupilotMega //System.Threading.Thread.Sleep(2000); // make sure new enough .net framework is installed - if (!MAC) + if (!MONO) { Microsoft.Win32.RegistryKey installed_versions = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP"); string[] version_names = installed_versions.GetSubKeyNames(); @@ -216,9 +231,9 @@ namespace ArdupilotMega double Framework = Convert.ToDouble(version_names[version_names.Length - 1].Remove(0, 1), CultureInfo.InvariantCulture); int SP = Convert.ToInt32(installed_versions.OpenSubKey(version_names[version_names.Length - 1]).GetValue("SP", 0)); - if (Framework < 3.5) + if (Framework < 4.0) { - MessageBox.Show("This program requires .NET Framework 3.5 +. You currently have " + Framework); + MessageBox.Show("This program requires .NET Framework 4.0 +. You currently have " + Framework); } } @@ -809,7 +824,7 @@ namespace ArdupilotMega { try { - System.Configuration.Configuration appconfig = System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel.None); + //System.Configuration.Configuration appconfig = System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel.None); XmlTextWriter xmlwriter = new XmlTextWriter(Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + @"config.xml", Encoding.ASCII); xmlwriter.Formatting = Formatting.Indented; @@ -824,9 +839,9 @@ namespace ArdupilotMega xmlwriter.WriteElementString("APMFirmware", APMFirmware.ToString()); - appconfig.AppSettings.Settings.Add("comport", comportname); - appconfig.AppSettings.Settings.Add("baudrate", CMB_baudrate.Text); - appconfig.AppSettings.Settings.Add("APMFirmware", APMFirmware.ToString()); + //appconfig.AppSettings.Settings.Add("comport", comportname); + //appconfig.AppSettings.Settings.Add("baudrate", CMB_baudrate.Text); + //appconfig.AppSettings.Settings.Add("APMFirmware", APMFirmware.ToString()); foreach (string key in config.Keys) { @@ -836,7 +851,7 @@ namespace ArdupilotMega continue; xmlwriter.WriteElementString(key, config[key].ToString()); - appconfig.AppSettings.Settings.Add(key, config[key].ToString()); + //appconfig.AppSettings.Settings.Add(key, config[key].ToString()); } catch { } } @@ -846,7 +861,7 @@ namespace ArdupilotMega xmlwriter.WriteEndDocument(); xmlwriter.Close(); - appconfig.Save(); + //appconfig.Save(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } @@ -926,7 +941,7 @@ namespace ArdupilotMega { try { - if (!MAC) + if (!MONO) { //joystick stuff @@ -980,7 +995,7 @@ namespace ArdupilotMega int minbytes = 10; - if (MAC) + if (MONO) minbytes = 0; DateTime menuupdate = DateTime.Now; @@ -1401,7 +1416,7 @@ namespace ArdupilotMega string baseurl = "http://ardupilot-mega.googlecode.com/git/Tools/ArdupilotMegaPlanner/bin/Release/"; bool update = updatecheck(loadinglabel, baseurl, ""); System.Diagnostics.Process P = new System.Diagnostics.Process(); - if (MAC) + if (MONO) { P.StartInfo.FileName = "mono"; P.StartInfo.Arguments = " \"" + Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + "Updater.exe\""; diff --git a/Tools/ArdupilotMegaPlanner/MavlinkLog.cs b/Tools/ArdupilotMegaPlanner/MavlinkLog.cs index fe3c75f856..3f309a5e99 100644 --- a/Tools/ArdupilotMegaPlanner/MavlinkLog.cs +++ b/Tools/ArdupilotMegaPlanner/MavlinkLog.cs @@ -231,7 +231,7 @@ namespace ArdupilotMega // create kmz - aka zip file - FileStream fs = File.Open(filename.Replace(".tlog.kml", ".kmz"), FileMode.Create); + FileStream fs = File.Open(filename.Replace(Path.GetExtension(filename), ".kmz"), FileMode.Create); ZipOutputStream zipStream = new ZipOutputStream(fs); zipStream.SetLevel(9); //0-9, 9 being the highest level of compression zipStream.UseZip64 = UseZip64.Off; // older zipfile @@ -246,14 +246,12 @@ namespace ArdupilotMega // Zip the file in buffered chunks // the "using" will close the stream even if an exception occurs byte[] buffer = new byte[4096]; - using (FileStream streamReader = File.OpenRead(filename)) + using (FileStream streamReader = File.Open(filename,FileMode.Open,FileAccess.Read,FileShare.ReadWrite)) { StreamUtils.Copy(streamReader, zipStream, buffer); } zipStream.CloseEntry(); - File.Delete(filename); - filename = Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + "block_plane_0.dae"; // entry 2 @@ -275,6 +273,9 @@ namespace ArdupilotMega zipStream.IsStreamOwner = true; // Makes the Close also Close the underlying stream zipStream.Close(); + + File.Delete(filename); + flightdata.Clear(); } diff --git a/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs b/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs index 15678c9825..d226b1803b 100644 --- a/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs +++ b/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs @@ -34,5 +34,5 @@ using System.Resources; // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.95")] +[assembly: AssemblyFileVersion("1.0.96")] [assembly: NeutralResourcesLanguageAttribute("")] diff --git a/Tools/ArdupilotMegaPlanner/Properties/Resources.Designer.cs b/Tools/ArdupilotMegaPlanner/Properties/Resources.Designer.cs index 47c8282690..30c8f96d77 100644 --- a/Tools/ArdupilotMegaPlanner/Properties/Resources.Designer.cs +++ b/Tools/ArdupilotMegaPlanner/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.235 +// Runtime Version:4.0.30319.239 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Tools/ArdupilotMegaPlanner/Script.cs b/Tools/ArdupilotMegaPlanner/Script.cs new file mode 100644 index 0000000000..a8c11ddc1b --- /dev/null +++ b/Tools/ArdupilotMegaPlanner/Script.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace ArdupilotMega +{ + public class Script + { + DateTime timeout = DateTime.Now; + + public enum Conditional + { + LT = 0, + LTEQ, + EQ, + GT, + GTEQ + } + + public bool WaitFor(string item, Conditional cond,double value ,int timeoutms) + { + timeout = DateTime.Now; + while (DateTime.Now < timeout.AddMilliseconds(timeoutms)) + { + //if (item) + { + + } + } + + return false; + } + + } +} diff --git a/Tools/ArdupilotMegaPlanner/Setup/Setup.Designer.cs b/Tools/ArdupilotMegaPlanner/Setup/Setup.Designer.cs index 955fa8f8ae..1f30541e5a 100644 --- a/Tools/ArdupilotMegaPlanner/Setup/Setup.Designer.cs +++ b/Tools/ArdupilotMegaPlanner/Setup/Setup.Designer.cs @@ -190,7 +190,6 @@ // // tabControl1 // - resources.ApplyResources(this.tabControl1, "tabControl1"); this.tabControl1.Controls.Add(this.tabReset); this.tabControl1.Controls.Add(this.tabRadioIn); this.tabControl1.Controls.Add(this.tabModes); @@ -198,17 +197,16 @@ this.tabControl1.Controls.Add(this.tabBattery); this.tabControl1.Controls.Add(this.tabArducopter); this.tabControl1.Controls.Add(this.tabHeli); + resources.ApplyResources(this.tabControl1, "tabControl1"); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; - this.toolTip1.SetToolTip(this.tabControl1, resources.GetString("tabControl1.ToolTip")); this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); // // tabReset // - resources.ApplyResources(this.tabReset, "tabReset"); this.tabReset.Controls.Add(this.BUT_reset); + resources.ApplyResources(this.tabReset, "tabReset"); this.tabReset.Name = "tabReset"; - this.toolTip1.SetToolTip(this.tabReset, resources.GetString("tabReset.ToolTip")); this.tabReset.UseVisualStyleBackColor = true; // // BUT_reset @@ -216,13 +214,11 @@ resources.ApplyResources(this.BUT_reset, "BUT_reset"); this.BUT_reset.Name = "BUT_reset"; this.BUT_reset.Tag = ""; - this.toolTip1.SetToolTip(this.BUT_reset, resources.GetString("BUT_reset.ToolTip")); this.BUT_reset.UseVisualStyleBackColor = true; this.BUT_reset.Click += new System.EventHandler(this.BUT_reset_Click); // // tabRadioIn // - resources.ApplyResources(this.tabRadioIn, "tabRadioIn"); this.tabRadioIn.Controls.Add(this.CHK_revch3); this.tabRadioIn.Controls.Add(this.CHK_revch4); this.tabRadioIn.Controls.Add(this.CHK_revch2); @@ -236,15 +232,14 @@ this.tabRadioIn.Controls.Add(this.BARthrottle); this.tabRadioIn.Controls.Add(this.BARyaw); this.tabRadioIn.Controls.Add(this.BARroll); + resources.ApplyResources(this.tabRadioIn, "tabRadioIn"); this.tabRadioIn.Name = "tabRadioIn"; - this.toolTip1.SetToolTip(this.tabRadioIn, resources.GetString("tabRadioIn.ToolTip")); this.tabRadioIn.UseVisualStyleBackColor = true; // // CHK_revch3 // resources.ApplyResources(this.CHK_revch3, "CHK_revch3"); this.CHK_revch3.Name = "CHK_revch3"; - this.toolTip1.SetToolTip(this.CHK_revch3, resources.GetString("CHK_revch3.ToolTip")); this.CHK_revch3.UseVisualStyleBackColor = true; this.CHK_revch3.CheckedChanged += new System.EventHandler(this.CHK_revch3_CheckedChanged); // @@ -252,7 +247,6 @@ // resources.ApplyResources(this.CHK_revch4, "CHK_revch4"); this.CHK_revch4.Name = "CHK_revch4"; - this.toolTip1.SetToolTip(this.CHK_revch4, resources.GetString("CHK_revch4.ToolTip")); this.CHK_revch4.UseVisualStyleBackColor = true; this.CHK_revch4.CheckedChanged += new System.EventHandler(this.CHK_revch4_CheckedChanged); // @@ -260,7 +254,6 @@ // resources.ApplyResources(this.CHK_revch2, "CHK_revch2"); this.CHK_revch2.Name = "CHK_revch2"; - this.toolTip1.SetToolTip(this.CHK_revch2, resources.GetString("CHK_revch2.ToolTip")); this.CHK_revch2.UseVisualStyleBackColor = true; this.CHK_revch2.CheckedChanged += new System.EventHandler(this.CHK_revch2_CheckedChanged); // @@ -268,7 +261,6 @@ // resources.ApplyResources(this.CHK_revch1, "CHK_revch1"); this.CHK_revch1.Name = "CHK_revch1"; - this.toolTip1.SetToolTip(this.CHK_revch1, resources.GetString("CHK_revch1.ToolTip")); this.CHK_revch1.UseVisualStyleBackColor = true; this.CHK_revch1.CheckedChanged += new System.EventHandler(this.CHK_revch1_CheckedChanged); // @@ -276,23 +268,21 @@ // resources.ApplyResources(this.BUT_Calibrateradio, "BUT_Calibrateradio"); this.BUT_Calibrateradio.Name = "BUT_Calibrateradio"; - this.toolTip1.SetToolTip(this.BUT_Calibrateradio, resources.GetString("BUT_Calibrateradio.ToolTip")); this.BUT_Calibrateradio.UseVisualStyleBackColor = true; this.BUT_Calibrateradio.Click += new System.EventHandler(this.BUT_Calibrateradio_Click); // // BAR8 // - resources.ApplyResources(this.BAR8, "BAR8"); this.BAR8.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BAR8.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BAR8.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch8in", true)); this.BAR8.Label = "Radio 8"; + resources.ApplyResources(this.BAR8, "BAR8"); this.BAR8.Maximum = 2200; this.BAR8.maxline = 0; this.BAR8.Minimum = 800; this.BAR8.minline = 0; this.BAR8.Name = "BAR8"; - this.toolTip1.SetToolTip(this.BAR8, resources.GetString("BAR8.ToolTip")); this.BAR8.Value = 1500; this.BAR8.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // @@ -302,119 +292,111 @@ // // BAR7 // - resources.ApplyResources(this.BAR7, "BAR7"); this.BAR7.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BAR7.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BAR7.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch7in", true)); this.BAR7.Label = "Radio 7"; + resources.ApplyResources(this.BAR7, "BAR7"); this.BAR7.Maximum = 2200; this.BAR7.maxline = 0; this.BAR7.Minimum = 800; this.BAR7.minline = 0; this.BAR7.Name = "BAR7"; - this.toolTip1.SetToolTip(this.BAR7, resources.GetString("BAR7.ToolTip")); this.BAR7.Value = 1500; this.BAR7.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // BAR6 // - resources.ApplyResources(this.BAR6, "BAR6"); this.BAR6.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BAR6.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BAR6.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch6in", true)); this.BAR6.Label = "Radio 6"; + resources.ApplyResources(this.BAR6, "BAR6"); this.BAR6.Maximum = 2200; this.BAR6.maxline = 0; this.BAR6.Minimum = 800; this.BAR6.minline = 0; this.BAR6.Name = "BAR6"; - this.toolTip1.SetToolTip(this.BAR6, resources.GetString("BAR6.ToolTip")); this.BAR6.Value = 1500; this.BAR6.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // BAR5 // - resources.ApplyResources(this.BAR5, "BAR5"); this.BAR5.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BAR5.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BAR5.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch5in", true)); this.BAR5.Label = "Radio 5"; + resources.ApplyResources(this.BAR5, "BAR5"); this.BAR5.Maximum = 2200; this.BAR5.maxline = 0; this.BAR5.Minimum = 800; this.BAR5.minline = 0; this.BAR5.Name = "BAR5"; - this.toolTip1.SetToolTip(this.BAR5, resources.GetString("BAR5.ToolTip")); this.BAR5.Value = 1500; this.BAR5.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // BARpitch // - resources.ApplyResources(this.BARpitch, "BARpitch"); this.BARpitch.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BARpitch.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BARpitch.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch2in", true)); this.BARpitch.Label = "Pitch"; + resources.ApplyResources(this.BARpitch, "BARpitch"); this.BARpitch.Maximum = 2200; this.BARpitch.maxline = 0; this.BARpitch.Minimum = 800; this.BARpitch.minline = 0; this.BARpitch.Name = "BARpitch"; - this.toolTip1.SetToolTip(this.BARpitch, resources.GetString("BARpitch.ToolTip")); this.BARpitch.Value = 1500; this.BARpitch.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // BARthrottle // - resources.ApplyResources(this.BARthrottle, "BARthrottle"); this.BARthrottle.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(68)))), ((int)(((byte)(69))))); this.BARthrottle.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BARthrottle.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch3in", true)); this.BARthrottle.Label = "Throttle"; + resources.ApplyResources(this.BARthrottle, "BARthrottle"); this.BARthrottle.Maximum = 2200; this.BARthrottle.maxline = 0; this.BARthrottle.Minimum = 800; this.BARthrottle.minline = 0; this.BARthrottle.Name = "BARthrottle"; - this.toolTip1.SetToolTip(this.BARthrottle, resources.GetString("BARthrottle.ToolTip")); this.BARthrottle.Value = 1000; this.BARthrottle.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(148)))), ((int)(((byte)(193)))), ((int)(((byte)(31))))); // // BARyaw // - resources.ApplyResources(this.BARyaw, "BARyaw"); this.BARyaw.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BARyaw.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BARyaw.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch4in", true)); this.BARyaw.Label = "Yaw"; + resources.ApplyResources(this.BARyaw, "BARyaw"); this.BARyaw.Maximum = 2200; this.BARyaw.maxline = 0; this.BARyaw.Minimum = 800; this.BARyaw.minline = 0; this.BARyaw.Name = "BARyaw"; - this.toolTip1.SetToolTip(this.BARyaw, resources.GetString("BARyaw.ToolTip")); this.BARyaw.Value = 1500; this.BARyaw.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // BARroll // - resources.ApplyResources(this.BARroll, "BARroll"); this.BARroll.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(255))))); this.BARroll.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.BARroll.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch1in", true)); this.BARroll.Label = "Roll"; + resources.ApplyResources(this.BARroll, "BARroll"); this.BARroll.Maximum = 2200; this.BARroll.maxline = 0; this.BARroll.Minimum = 800; this.BARroll.minline = 0; this.BARroll.Name = "BARroll"; - this.toolTip1.SetToolTip(this.BARroll, resources.GetString("BARroll.ToolTip")); this.BARroll.Value = 1500; this.BARroll.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); // // tabModes // - resources.ApplyResources(this.tabModes, "tabModes"); this.tabModes.Controls.Add(this.CB_simple6); this.tabModes.Controls.Add(this.CB_simple5); this.tabModes.Controls.Add(this.CB_simple4); @@ -444,220 +426,190 @@ this.tabModes.Controls.Add(this.label1); this.tabModes.Controls.Add(this.CMB_fmode1); this.tabModes.Controls.Add(this.BUT_SaveModes); + resources.ApplyResources(this.tabModes, "tabModes"); this.tabModes.Name = "tabModes"; - this.toolTip1.SetToolTip(this.tabModes, resources.GetString("tabModes.ToolTip")); this.tabModes.UseVisualStyleBackColor = true; // // CB_simple6 // resources.ApplyResources(this.CB_simple6, "CB_simple6"); this.CB_simple6.Name = "CB_simple6"; - this.toolTip1.SetToolTip(this.CB_simple6, resources.GetString("CB_simple6.ToolTip")); this.CB_simple6.UseVisualStyleBackColor = true; // // CB_simple5 // resources.ApplyResources(this.CB_simple5, "CB_simple5"); this.CB_simple5.Name = "CB_simple5"; - this.toolTip1.SetToolTip(this.CB_simple5, resources.GetString("CB_simple5.ToolTip")); this.CB_simple5.UseVisualStyleBackColor = true; // // CB_simple4 // resources.ApplyResources(this.CB_simple4, "CB_simple4"); this.CB_simple4.Name = "CB_simple4"; - this.toolTip1.SetToolTip(this.CB_simple4, resources.GetString("CB_simple4.ToolTip")); this.CB_simple4.UseVisualStyleBackColor = true; // // CB_simple3 // resources.ApplyResources(this.CB_simple3, "CB_simple3"); this.CB_simple3.Name = "CB_simple3"; - this.toolTip1.SetToolTip(this.CB_simple3, resources.GetString("CB_simple3.ToolTip")); this.CB_simple3.UseVisualStyleBackColor = true; // // CB_simple2 // resources.ApplyResources(this.CB_simple2, "CB_simple2"); this.CB_simple2.Name = "CB_simple2"; - this.toolTip1.SetToolTip(this.CB_simple2, resources.GetString("CB_simple2.ToolTip")); this.CB_simple2.UseVisualStyleBackColor = true; // // CB_simple1 // resources.ApplyResources(this.CB_simple1, "CB_simple1"); this.CB_simple1.Name = "CB_simple1"; - this.toolTip1.SetToolTip(this.CB_simple1, resources.GetString("CB_simple1.ToolTip")); this.CB_simple1.UseVisualStyleBackColor = true; // // label14 // resources.ApplyResources(this.label14, "label14"); this.label14.Name = "label14"; - this.toolTip1.SetToolTip(this.label14, resources.GetString("label14.ToolTip")); // // LBL_flightmodepwm // resources.ApplyResources(this.LBL_flightmodepwm, "LBL_flightmodepwm"); this.LBL_flightmodepwm.Name = "LBL_flightmodepwm"; - this.toolTip1.SetToolTip(this.LBL_flightmodepwm, resources.GetString("LBL_flightmodepwm.ToolTip")); // // label13 // resources.ApplyResources(this.label13, "label13"); this.label13.Name = "label13"; - this.toolTip1.SetToolTip(this.label13, resources.GetString("label13.ToolTip")); // // lbl_currentmode // resources.ApplyResources(this.lbl_currentmode, "lbl_currentmode"); this.lbl_currentmode.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.currentStateBindingSource, "mode", true)); this.lbl_currentmode.Name = "lbl_currentmode"; - this.toolTip1.SetToolTip(this.lbl_currentmode, resources.GetString("lbl_currentmode.ToolTip")); // // label12 // resources.ApplyResources(this.label12, "label12"); this.label12.Name = "label12"; - this.toolTip1.SetToolTip(this.label12, resources.GetString("label12.ToolTip")); // // label11 // resources.ApplyResources(this.label11, "label11"); this.label11.Name = "label11"; - this.toolTip1.SetToolTip(this.label11, resources.GetString("label11.ToolTip")); // // label10 // resources.ApplyResources(this.label10, "label10"); this.label10.Name = "label10"; - this.toolTip1.SetToolTip(this.label10, resources.GetString("label10.ToolTip")); // // label9 // resources.ApplyResources(this.label9, "label9"); this.label9.Name = "label9"; - this.toolTip1.SetToolTip(this.label9, resources.GetString("label9.ToolTip")); // // label8 // resources.ApplyResources(this.label8, "label8"); this.label8.Name = "label8"; - this.toolTip1.SetToolTip(this.label8, resources.GetString("label8.ToolTip")); // // label7 // resources.ApplyResources(this.label7, "label7"); this.label7.Name = "label7"; - this.toolTip1.SetToolTip(this.label7, resources.GetString("label7.ToolTip")); // // label6 // resources.ApplyResources(this.label6, "label6"); this.label6.Name = "label6"; - this.toolTip1.SetToolTip(this.label6, resources.GetString("label6.ToolTip")); // // CMB_fmode6 // - resources.ApplyResources(this.CMB_fmode6, "CMB_fmode6"); this.CMB_fmode6.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode6.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode6.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode6, "CMB_fmode6"); this.CMB_fmode6.Name = "CMB_fmode6"; - this.toolTip1.SetToolTip(this.CMB_fmode6, resources.GetString("CMB_fmode6.ToolTip")); // // label5 // resources.ApplyResources(this.label5, "label5"); this.label5.Name = "label5"; - this.toolTip1.SetToolTip(this.label5, resources.GetString("label5.ToolTip")); // // CMB_fmode5 // - resources.ApplyResources(this.CMB_fmode5, "CMB_fmode5"); this.CMB_fmode5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode5.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode5, "CMB_fmode5"); this.CMB_fmode5.Name = "CMB_fmode5"; - this.toolTip1.SetToolTip(this.CMB_fmode5, resources.GetString("CMB_fmode5.ToolTip")); // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; - this.toolTip1.SetToolTip(this.label4, resources.GetString("label4.ToolTip")); // // CMB_fmode4 // - resources.ApplyResources(this.CMB_fmode4, "CMB_fmode4"); this.CMB_fmode4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode4.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode4, "CMB_fmode4"); this.CMB_fmode4.Name = "CMB_fmode4"; - this.toolTip1.SetToolTip(this.CMB_fmode4, resources.GetString("CMB_fmode4.ToolTip")); // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; - this.toolTip1.SetToolTip(this.label3, resources.GetString("label3.ToolTip")); // // CMB_fmode3 // - resources.ApplyResources(this.CMB_fmode3, "CMB_fmode3"); this.CMB_fmode3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode3.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode3, "CMB_fmode3"); this.CMB_fmode3.Name = "CMB_fmode3"; - this.toolTip1.SetToolTip(this.CMB_fmode3, resources.GetString("CMB_fmode3.ToolTip")); // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; - this.toolTip1.SetToolTip(this.label2, resources.GetString("label2.ToolTip")); // // CMB_fmode2 // - resources.ApplyResources(this.CMB_fmode2, "CMB_fmode2"); this.CMB_fmode2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode2.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode2, "CMB_fmode2"); this.CMB_fmode2.Name = "CMB_fmode2"; - this.toolTip1.SetToolTip(this.CMB_fmode2, resources.GetString("CMB_fmode2.ToolTip")); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; - this.toolTip1.SetToolTip(this.label1, resources.GetString("label1.ToolTip")); // // CMB_fmode1 // - resources.ApplyResources(this.CMB_fmode1, "CMB_fmode1"); this.CMB_fmode1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.CMB_fmode1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.CMB_fmode1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_fmode1.FormattingEnabled = true; + resources.ApplyResources(this.CMB_fmode1, "CMB_fmode1"); this.CMB_fmode1.Name = "CMB_fmode1"; - this.toolTip1.SetToolTip(this.CMB_fmode1, resources.GetString("CMB_fmode1.ToolTip")); // // BUT_SaveModes // resources.ApplyResources(this.BUT_SaveModes, "BUT_SaveModes"); this.BUT_SaveModes.Name = "BUT_SaveModes"; - this.toolTip1.SetToolTip(this.BUT_SaveModes, resources.GetString("BUT_SaveModes.ToolTip")); this.BUT_SaveModes.UseVisualStyleBackColor = true; this.BUT_SaveModes.Click += new System.EventHandler(this.BUT_SaveModes_Click); // // tabHardware // - resources.ApplyResources(this.tabHardware, "tabHardware"); this.tabHardware.BackColor = System.Drawing.Color.DarkRed; this.tabHardware.Controls.Add(this.linkLabelmagdec); this.tabHardware.Controls.Add(this.label100); @@ -668,22 +620,20 @@ this.tabHardware.Controls.Add(this.pictureBox4); this.tabHardware.Controls.Add(this.pictureBox3); this.tabHardware.Controls.Add(this.pictureBox1); + resources.ApplyResources(this.tabHardware, "tabHardware"); this.tabHardware.Name = "tabHardware"; - this.toolTip1.SetToolTip(this.tabHardware, resources.GetString("tabHardware.ToolTip")); // // linkLabelmagdec // resources.ApplyResources(this.linkLabelmagdec, "linkLabelmagdec"); this.linkLabelmagdec.Name = "linkLabelmagdec"; this.linkLabelmagdec.TabStop = true; - this.toolTip1.SetToolTip(this.linkLabelmagdec, resources.GetString("linkLabelmagdec.ToolTip")); this.linkLabelmagdec.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); // // label100 // resources.ApplyResources(this.label100, "label100"); this.label100.Name = "label100"; - this.toolTip1.SetToolTip(this.label100, resources.GetString("label100.ToolTip")); // // TXT_declination // @@ -696,7 +646,6 @@ // resources.ApplyResources(this.CHK_enableairspeed, "CHK_enableairspeed"); this.CHK_enableairspeed.Name = "CHK_enableairspeed"; - this.toolTip1.SetToolTip(this.CHK_enableairspeed, resources.GetString("CHK_enableairspeed.ToolTip")); this.CHK_enableairspeed.UseVisualStyleBackColor = true; this.CHK_enableairspeed.CheckedChanged += new System.EventHandler(this.CHK_enableairspeed_CheckedChanged); // @@ -704,7 +653,6 @@ // resources.ApplyResources(this.CHK_enablesonar, "CHK_enablesonar"); this.CHK_enablesonar.Name = "CHK_enablesonar"; - this.toolTip1.SetToolTip(this.CHK_enablesonar, resources.GetString("CHK_enablesonar.ToolTip")); this.CHK_enablesonar.UseVisualStyleBackColor = true; this.CHK_enablesonar.CheckedChanged += new System.EventHandler(this.CHK_enablesonar_CheckedChanged); // @@ -712,42 +660,37 @@ // resources.ApplyResources(this.CHK_enablecompass, "CHK_enablecompass"); this.CHK_enablecompass.Name = "CHK_enablecompass"; - this.toolTip1.SetToolTip(this.CHK_enablecompass, resources.GetString("CHK_enablecompass.ToolTip")); this.CHK_enablecompass.UseVisualStyleBackColor = true; this.CHK_enablecompass.CheckedChanged += new System.EventHandler(this.CHK_enablecompass_CheckedChanged); // // pictureBox4 // - resources.ApplyResources(this.pictureBox4, "pictureBox4"); this.pictureBox4.BackColor = System.Drawing.Color.White; this.pictureBox4.BackgroundImage = global::ArdupilotMega.Properties.Resources.airspeed; + resources.ApplyResources(this.pictureBox4, "pictureBox4"); this.pictureBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBox4, resources.GetString("pictureBox4.ToolTip")); // // pictureBox3 // - resources.ApplyResources(this.pictureBox3, "pictureBox3"); this.pictureBox3.BackColor = System.Drawing.Color.White; this.pictureBox3.BackgroundImage = global::ArdupilotMega.Properties.Resources.sonar; + resources.ApplyResources(this.pictureBox3, "pictureBox3"); this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBox3, resources.GetString("pictureBox3.ToolTip")); // // pictureBox1 // - resources.ApplyResources(this.pictureBox1, "pictureBox1"); this.pictureBox1.BackgroundImage = global::ArdupilotMega.Properties.Resources.compass; + resources.ApplyResources(this.pictureBox1, "pictureBox1"); this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBox1, resources.GetString("pictureBox1.ToolTip")); // // tabBattery // - resources.ApplyResources(this.tabBattery, "tabBattery"); this.tabBattery.Controls.Add(this.TXT_ampspervolt); this.tabBattery.Controls.Add(this.TXT_divider); this.tabBattery.Controls.Add(this.TXT_voltage); @@ -764,15 +707,14 @@ this.tabBattery.Controls.Add(this.TXT_battcapacity); this.tabBattery.Controls.Add(this.CMB_batmontype); this.tabBattery.Controls.Add(this.pictureBox5); + resources.ApplyResources(this.tabBattery, "tabBattery"); this.tabBattery.Name = "tabBattery"; - this.toolTip1.SetToolTip(this.tabBattery, resources.GetString("tabBattery.ToolTip")); this.tabBattery.UseVisualStyleBackColor = true; // // TXT_ampspervolt // resources.ApplyResources(this.TXT_ampspervolt, "TXT_ampspervolt"); this.TXT_ampspervolt.Name = "TXT_ampspervolt"; - this.toolTip1.SetToolTip(this.TXT_ampspervolt, resources.GetString("TXT_ampspervolt.ToolTip")); this.TXT_ampspervolt.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_ampspervolt_Validating); this.TXT_ampspervolt.Validated += new System.EventHandler(this.TXT_ampspervolt_Validated); // @@ -780,23 +722,20 @@ // resources.ApplyResources(this.TXT_divider, "TXT_divider"); this.TXT_divider.Name = "TXT_divider"; - this.toolTip1.SetToolTip(this.TXT_divider, resources.GetString("TXT_divider.ToolTip")); this.TXT_divider.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_divider_Validating); this.TXT_divider.Validated += new System.EventHandler(this.TXT_divider_Validated); // // TXT_voltage // - resources.ApplyResources(this.TXT_voltage, "TXT_voltage"); this.TXT_voltage.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.currentStateBindingSource, "battery_voltage", true)); + resources.ApplyResources(this.TXT_voltage, "TXT_voltage"); this.TXT_voltage.Name = "TXT_voltage"; this.TXT_voltage.ReadOnly = true; - this.toolTip1.SetToolTip(this.TXT_voltage, resources.GetString("TXT_voltage.ToolTip")); // // TXT_measuredvoltage // resources.ApplyResources(this.TXT_measuredvoltage, "TXT_measuredvoltage"); this.TXT_measuredvoltage.Name = "TXT_measuredvoltage"; - this.toolTip1.SetToolTip(this.TXT_measuredvoltage, resources.GetString("TXT_measuredvoltage.ToolTip")); this.TXT_measuredvoltage.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_measuredvoltage_Validating); this.TXT_measuredvoltage.Validated += new System.EventHandler(this.TXT_measuredvoltage_Validated); // @@ -804,7 +743,6 @@ // resources.ApplyResources(this.TXT_inputvoltage, "TXT_inputvoltage"); this.TXT_inputvoltage.Name = "TXT_inputvoltage"; - this.toolTip1.SetToolTip(this.TXT_inputvoltage, resources.GetString("TXT_inputvoltage.ToolTip")); this.TXT_inputvoltage.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_inputvoltage_Validating); this.TXT_inputvoltage.Validated += new System.EventHandler(this.TXT_inputvoltage_Validated); // @@ -812,62 +750,52 @@ // resources.ApplyResources(this.label35, "label35"); this.label35.Name = "label35"; - this.toolTip1.SetToolTip(this.label35, resources.GetString("label35.ToolTip")); // // label34 // resources.ApplyResources(this.label34, "label34"); this.label34.Name = "label34"; - this.toolTip1.SetToolTip(this.label34, resources.GetString("label34.ToolTip")); // // label33 // resources.ApplyResources(this.label33, "label33"); this.label33.Name = "label33"; - this.toolTip1.SetToolTip(this.label33, resources.GetString("label33.ToolTip")); // // label32 // resources.ApplyResources(this.label32, "label32"); this.label32.Name = "label32"; - this.toolTip1.SetToolTip(this.label32, resources.GetString("label32.ToolTip")); // // label31 // resources.ApplyResources(this.label31, "label31"); this.label31.Name = "label31"; - this.toolTip1.SetToolTip(this.label31, resources.GetString("label31.ToolTip")); // // textBox3 // resources.ApplyResources(this.textBox3, "textBox3"); this.textBox3.Name = "textBox3"; this.textBox3.ReadOnly = true; - this.toolTip1.SetToolTip(this.textBox3, resources.GetString("textBox3.ToolTip")); // // label29 // resources.ApplyResources(this.label29, "label29"); this.label29.Name = "label29"; - this.toolTip1.SetToolTip(this.label29, resources.GetString("label29.ToolTip")); // // label30 // resources.ApplyResources(this.label30, "label30"); this.label30.Name = "label30"; - this.toolTip1.SetToolTip(this.label30, resources.GetString("label30.ToolTip")); // // TXT_battcapacity // resources.ApplyResources(this.TXT_battcapacity, "TXT_battcapacity"); this.TXT_battcapacity.Name = "TXT_battcapacity"; - this.toolTip1.SetToolTip(this.TXT_battcapacity, resources.GetString("TXT_battcapacity.ToolTip")); this.TXT_battcapacity.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_battcapacity_Validating); this.TXT_battcapacity.Validated += new System.EventHandler(this.TXT_battcapacity_Validated); // // CMB_batmontype // - resources.ApplyResources(this.CMB_batmontype, "CMB_batmontype"); this.CMB_batmontype.FormattingEnabled = true; this.CMB_batmontype.Items.AddRange(new object[] { resources.GetString("CMB_batmontype.Items"), @@ -875,82 +803,73 @@ resources.GetString("CMB_batmontype.Items2"), resources.GetString("CMB_batmontype.Items3"), resources.GetString("CMB_batmontype.Items4")}); + resources.ApplyResources(this.CMB_batmontype, "CMB_batmontype"); this.CMB_batmontype.Name = "CMB_batmontype"; - this.toolTip1.SetToolTip(this.CMB_batmontype, resources.GetString("CMB_batmontype.ToolTip")); this.CMB_batmontype.SelectedIndexChanged += new System.EventHandler(this.CMB_batmontype_SelectedIndexChanged); // // pictureBox5 // - resources.ApplyResources(this.pictureBox5, "pictureBox5"); this.pictureBox5.BackColor = System.Drawing.Color.White; this.pictureBox5.BackgroundImage = global::ArdupilotMega.Properties.Resources.attocurrent; + resources.ApplyResources(this.pictureBox5, "pictureBox5"); this.pictureBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBox5, resources.GetString("pictureBox5.ToolTip")); // // tabArducopter // - resources.ApplyResources(this.tabArducopter, "tabArducopter"); this.tabArducopter.Controls.Add(this.label28); this.tabArducopter.Controls.Add(this.label16); this.tabArducopter.Controls.Add(this.label15); this.tabArducopter.Controls.Add(this.pictureBoxQuadX); this.tabArducopter.Controls.Add(this.pictureBoxQuad); this.tabArducopter.Controls.Add(this.BUT_levelac2); + resources.ApplyResources(this.tabArducopter, "tabArducopter"); this.tabArducopter.Name = "tabArducopter"; - this.toolTip1.SetToolTip(this.tabArducopter, resources.GetString("tabArducopter.ToolTip")); this.tabArducopter.UseVisualStyleBackColor = true; // // label28 // resources.ApplyResources(this.label28, "label28"); this.label28.Name = "label28"; - this.toolTip1.SetToolTip(this.label28, resources.GetString("label28.ToolTip")); // // label16 // resources.ApplyResources(this.label16, "label16"); this.label16.Name = "label16"; - this.toolTip1.SetToolTip(this.label16, resources.GetString("label16.ToolTip")); // // label15 // resources.ApplyResources(this.label15, "label15"); this.label15.Name = "label15"; - this.toolTip1.SetToolTip(this.label15, resources.GetString("label15.ToolTip")); // // pictureBoxQuadX // - resources.ApplyResources(this.pictureBoxQuadX, "pictureBoxQuadX"); this.pictureBoxQuadX.Cursor = System.Windows.Forms.Cursors.Hand; this.pictureBoxQuadX.Image = global::ArdupilotMega.Properties.Resources.frames_04; + resources.ApplyResources(this.pictureBoxQuadX, "pictureBoxQuadX"); this.pictureBoxQuadX.Name = "pictureBoxQuadX"; this.pictureBoxQuadX.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBoxQuadX, resources.GetString("pictureBoxQuadX.ToolTip")); this.pictureBoxQuadX.Click += new System.EventHandler(this.pictureBoxQuadX_Click); // // pictureBoxQuad // - resources.ApplyResources(this.pictureBoxQuad, "pictureBoxQuad"); this.pictureBoxQuad.Cursor = System.Windows.Forms.Cursors.Hand; this.pictureBoxQuad.Image = global::ArdupilotMega.Properties.Resources.frames_03; + resources.ApplyResources(this.pictureBoxQuad, "pictureBoxQuad"); this.pictureBoxQuad.Name = "pictureBoxQuad"; this.pictureBoxQuad.TabStop = false; - this.toolTip1.SetToolTip(this.pictureBoxQuad, resources.GetString("pictureBoxQuad.ToolTip")); this.pictureBoxQuad.Click += new System.EventHandler(this.pictureBoxQuad_Click); // // BUT_levelac2 // resources.ApplyResources(this.BUT_levelac2, "BUT_levelac2"); this.BUT_levelac2.Name = "BUT_levelac2"; - this.toolTip1.SetToolTip(this.BUT_levelac2, resources.GetString("BUT_levelac2.ToolTip")); this.BUT_levelac2.UseVisualStyleBackColor = true; this.BUT_levelac2.Click += new System.EventHandler(this.BUT_levelac2_Click); // // tabHeli // - resources.ApplyResources(this.tabHeli, "tabHeli"); this.tabHeli.Controls.Add(this.groupBox3); this.tabHeli.Controls.Add(this.label44); this.tabHeli.Controls.Add(this.label43); @@ -987,39 +906,35 @@ this.tabHeli.Controls.Add(this.HS4); this.tabHeli.Controls.Add(this.HS3); this.tabHeli.Controls.Add(this.Gservoloc); + resources.ApplyResources(this.tabHeli, "tabHeli"); this.tabHeli.Name = "tabHeli"; - this.toolTip1.SetToolTip(this.tabHeli, resources.GetString("tabHeli.ToolTip")); this.tabHeli.UseVisualStyleBackColor = true; this.tabHeli.Click += new System.EventHandler(this.tabHeli_Click); // // groupBox3 // - resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Controls.Add(this.label46); this.groupBox3.Controls.Add(this.label45); this.groupBox3.Controls.Add(this.GYR_ENABLE_); this.groupBox3.Controls.Add(this.GYR_GAIN_); + resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; - this.toolTip1.SetToolTip(this.groupBox3, resources.GetString("groupBox3.ToolTip")); // // label46 // resources.ApplyResources(this.label46, "label46"); this.label46.Name = "label46"; - this.toolTip1.SetToolTip(this.label46, resources.GetString("label46.ToolTip")); // // label45 // resources.ApplyResources(this.label45, "label45"); this.label45.Name = "label45"; - this.toolTip1.SetToolTip(this.label45, resources.GetString("label45.ToolTip")); // // GYR_ENABLE_ // resources.ApplyResources(this.GYR_ENABLE_, "GYR_ENABLE_"); this.GYR_ENABLE_.Name = "GYR_ENABLE_"; - this.toolTip1.SetToolTip(this.GYR_ENABLE_, resources.GetString("GYR_ENABLE_.ToolTip")); this.GYR_ENABLE_.UseVisualStyleBackColor = true; this.GYR_ENABLE_.CheckedChanged += new System.EventHandler(this.GYR_ENABLE__CheckedChanged); // @@ -1027,57 +942,49 @@ // resources.ApplyResources(this.GYR_GAIN_, "GYR_GAIN_"); this.GYR_GAIN_.Name = "GYR_GAIN_"; - this.toolTip1.SetToolTip(this.GYR_GAIN_, resources.GetString("GYR_GAIN_.ToolTip")); this.GYR_GAIN_.Validating += new System.ComponentModel.CancelEventHandler(this.GYR_GAIN__Validating); // // label44 // resources.ApplyResources(this.label44, "label44"); this.label44.Name = "label44"; - this.toolTip1.SetToolTip(this.label44, resources.GetString("label44.ToolTip")); // // label43 // resources.ApplyResources(this.label43, "label43"); this.label43.Name = "label43"; - this.toolTip1.SetToolTip(this.label43, resources.GetString("label43.ToolTip")); // // label42 // resources.ApplyResources(this.label42, "label42"); this.label42.Name = "label42"; - this.toolTip1.SetToolTip(this.label42, resources.GetString("label42.ToolTip")); // // BUT_HS4save // resources.ApplyResources(this.BUT_HS4save, "BUT_HS4save"); this.BUT_HS4save.Name = "BUT_HS4save"; - this.toolTip1.SetToolTip(this.BUT_HS4save, resources.GetString("BUT_HS4save.ToolTip")); this.BUT_HS4save.UseVisualStyleBackColor = true; this.BUT_HS4save.Click += new System.EventHandler(this.BUT_HS4save_Click); // // groupBox2 // - resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Controls.Add(this.label24); this.groupBox2.Controls.Add(this.HS4_MIN); this.groupBox2.Controls.Add(this.HS4_MAX); this.groupBox2.Controls.Add(this.label40); + resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; - this.toolTip1.SetToolTip(this.groupBox2, resources.GetString("groupBox2.ToolTip")); // // label24 // resources.ApplyResources(this.label24, "label24"); this.label24.Name = "label24"; - this.toolTip1.SetToolTip(this.label24, resources.GetString("label24.ToolTip")); // // HS4_MIN // resources.ApplyResources(this.HS4_MIN, "HS4_MIN"); this.HS4_MIN.Name = "HS4_MIN"; - this.toolTip1.SetToolTip(this.HS4_MIN, resources.GetString("HS4_MIN.ToolTip")); this.HS4_MIN.Enter += new System.EventHandler(this.HS4_MIN_Enter); this.HS4_MIN.Leave += new System.EventHandler(this.HS4_MIN_Leave); this.HS4_MIN.Validating += new System.ComponentModel.CancelEventHandler(this.PWM_Validating); @@ -1086,7 +993,6 @@ // resources.ApplyResources(this.HS4_MAX, "HS4_MAX"); this.HS4_MAX.Name = "HS4_MAX"; - this.toolTip1.SetToolTip(this.HS4_MAX, resources.GetString("HS4_MAX.ToolTip")); this.HS4_MAX.Enter += new System.EventHandler(this.HS4_MAX_Enter); this.HS4_MAX.Leave += new System.EventHandler(this.HS4_MAX_Leave); this.HS4_MAX.Validating += new System.ComponentModel.CancelEventHandler(this.PWM_Validating); @@ -1095,46 +1001,40 @@ // resources.ApplyResources(this.label40, "label40"); this.label40.Name = "label40"; - this.toolTip1.SetToolTip(this.label40, resources.GetString("label40.ToolTip")); // // BUT_swash_manual // resources.ApplyResources(this.BUT_swash_manual, "BUT_swash_manual"); this.BUT_swash_manual.Name = "BUT_swash_manual"; - this.toolTip1.SetToolTip(this.BUT_swash_manual, resources.GetString("BUT_swash_manual.ToolTip")); this.BUT_swash_manual.UseVisualStyleBackColor = true; this.BUT_swash_manual.Click += new System.EventHandler(this.BUT_swash_manual_Click); // // groupBox1 // - resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Controls.Add(this.label41); this.groupBox1.Controls.Add(this.label21); this.groupBox1.Controls.Add(this.COL_MIN_); this.groupBox1.Controls.Add(this.COL_MID_); this.groupBox1.Controls.Add(this.COL_MAX_); this.groupBox1.Controls.Add(this.BUT_0collective); + resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; - this.toolTip1.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip")); // // label41 // resources.ApplyResources(this.label41, "label41"); this.label41.Name = "label41"; - this.toolTip1.SetToolTip(this.label41, resources.GetString("label41.ToolTip")); // // label21 // resources.ApplyResources(this.label21, "label21"); this.label21.Name = "label21"; - this.toolTip1.SetToolTip(this.label21, resources.GetString("label21.ToolTip")); // // COL_MIN_ // resources.ApplyResources(this.COL_MIN_, "COL_MIN_"); this.COL_MIN_.Name = "COL_MIN_"; - this.toolTip1.SetToolTip(this.COL_MIN_, resources.GetString("COL_MIN_.ToolTip")); this.COL_MIN_.Enter += new System.EventHandler(this.COL_MIN__Enter); this.COL_MIN_.Leave += new System.EventHandler(this.COL_MIN__Leave); this.COL_MIN_.Validating += new System.ComponentModel.CancelEventHandler(this.PWM_Validating); @@ -1143,14 +1043,12 @@ // resources.ApplyResources(this.COL_MID_, "COL_MID_"); this.COL_MID_.Name = "COL_MID_"; - this.toolTip1.SetToolTip(this.COL_MID_, resources.GetString("COL_MID_.ToolTip")); this.COL_MID_.Validating += new System.ComponentModel.CancelEventHandler(this.PWM_Validating); // // COL_MAX_ // resources.ApplyResources(this.COL_MAX_, "COL_MAX_"); this.COL_MAX_.Name = "COL_MAX_"; - this.toolTip1.SetToolTip(this.COL_MAX_, resources.GetString("COL_MAX_.ToolTip")); this.COL_MAX_.Enter += new System.EventHandler(this.COL_MAX__Enter); this.COL_MAX_.Leave += new System.EventHandler(this.COL_MAX__Leave); this.COL_MAX_.Validating += new System.ComponentModel.CancelEventHandler(this.PWM_Validating); @@ -1159,7 +1057,6 @@ // resources.ApplyResources(this.BUT_0collective, "BUT_0collective"); this.BUT_0collective.Name = "BUT_0collective"; - this.toolTip1.SetToolTip(this.BUT_0collective, resources.GetString("BUT_0collective.ToolTip")); this.BUT_0collective.UseVisualStyleBackColor = true; this.BUT_0collective.Click += new System.EventHandler(this.BUT_0collective_Click); // @@ -1177,7 +1074,6 @@ 0, 0}); this.HS4_TRIM.Name = "HS4_TRIM"; - this.toolTip1.SetToolTip(this.HS4_TRIM, resources.GetString("HS4_TRIM.ToolTip")); this.HS4_TRIM.Value = new decimal(new int[] { 1500, 0, @@ -1199,7 +1095,6 @@ 0, 0}); this.HS3_TRIM.Name = "HS3_TRIM"; - this.toolTip1.SetToolTip(this.HS3_TRIM, resources.GetString("HS3_TRIM.ToolTip")); this.HS3_TRIM.Value = new decimal(new int[] { 1500, 0, @@ -1221,7 +1116,6 @@ 0, 0}); this.HS2_TRIM.Name = "HS2_TRIM"; - this.toolTip1.SetToolTip(this.HS2_TRIM, resources.GetString("HS2_TRIM.ToolTip")); this.HS2_TRIM.Value = new decimal(new int[] { 1500, 0, @@ -1243,7 +1137,6 @@ 0, 0}); this.HS1_TRIM.Name = "HS1_TRIM"; - this.toolTip1.SetToolTip(this.HS1_TRIM, resources.GetString("HS1_TRIM.ToolTip")); this.HS1_TRIM.Value = new decimal(new int[] { 1500, 0, @@ -1255,69 +1148,58 @@ // resources.ApplyResources(this.label39, "label39"); this.label39.Name = "label39"; - this.toolTip1.SetToolTip(this.label39, resources.GetString("label39.ToolTip")); // // label38 // resources.ApplyResources(this.label38, "label38"); this.label38.Name = "label38"; - this.toolTip1.SetToolTip(this.label38, resources.GetString("label38.ToolTip")); // // label37 // resources.ApplyResources(this.label37, "label37"); this.label37.Name = "label37"; - this.toolTip1.SetToolTip(this.label37, resources.GetString("label37.ToolTip")); // // label36 // resources.ApplyResources(this.label36, "label36"); this.label36.Name = "label36"; - this.toolTip1.SetToolTip(this.label36, resources.GetString("label36.ToolTip")); // // label26 // resources.ApplyResources(this.label26, "label26"); this.label26.Name = "label26"; - this.toolTip1.SetToolTip(this.label26, resources.GetString("label26.ToolTip")); // // PIT_MAX_ // resources.ApplyResources(this.PIT_MAX_, "PIT_MAX_"); this.PIT_MAX_.Name = "PIT_MAX_"; - this.toolTip1.SetToolTip(this.PIT_MAX_, resources.GetString("PIT_MAX_.ToolTip")); this.PIT_MAX_.Validating += new System.ComponentModel.CancelEventHandler(this.PIT_MAX__Validating); // // label25 // resources.ApplyResources(this.label25, "label25"); this.label25.Name = "label25"; - this.toolTip1.SetToolTip(this.label25, resources.GetString("label25.ToolTip")); // // ROL_MAX_ // resources.ApplyResources(this.ROL_MAX_, "ROL_MAX_"); this.ROL_MAX_.Name = "ROL_MAX_"; - this.toolTip1.SetToolTip(this.ROL_MAX_, resources.GetString("ROL_MAX_.ToolTip")); this.ROL_MAX_.Validating += new System.ComponentModel.CancelEventHandler(this.ROL_MAX__Validating); // // label23 // resources.ApplyResources(this.label23, "label23"); this.label23.Name = "label23"; - this.toolTip1.SetToolTip(this.label23, resources.GetString("label23.ToolTip")); // // label22 // resources.ApplyResources(this.label22, "label22"); this.label22.Name = "label22"; - this.toolTip1.SetToolTip(this.label22, resources.GetString("label22.ToolTip")); // // HS4_REV // resources.ApplyResources(this.HS4_REV, "HS4_REV"); this.HS4_REV.Name = "HS4_REV"; - this.toolTip1.SetToolTip(this.HS4_REV, resources.GetString("HS4_REV.ToolTip")); this.HS4_REV.UseVisualStyleBackColor = true; this.HS4_REV.CheckedChanged += new System.EventHandler(this.HS4_REV_CheckedChanged); // @@ -1325,46 +1207,39 @@ // resources.ApplyResources(this.label20, "label20"); this.label20.Name = "label20"; - this.toolTip1.SetToolTip(this.label20, resources.GetString("label20.ToolTip")); // // label19 // resources.ApplyResources(this.label19, "label19"); this.label19.Name = "label19"; - this.toolTip1.SetToolTip(this.label19, resources.GetString("label19.ToolTip")); // // label18 // resources.ApplyResources(this.label18, "label18"); this.label18.Name = "label18"; - this.toolTip1.SetToolTip(this.label18, resources.GetString("label18.ToolTip")); // // SV3_POS_ // resources.ApplyResources(this.SV3_POS_, "SV3_POS_"); this.SV3_POS_.Name = "SV3_POS_"; - this.toolTip1.SetToolTip(this.SV3_POS_, resources.GetString("SV3_POS_.ToolTip")); this.SV3_POS_.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_srvpos3_Validating); // // SV2_POS_ // resources.ApplyResources(this.SV2_POS_, "SV2_POS_"); this.SV2_POS_.Name = "SV2_POS_"; - this.toolTip1.SetToolTip(this.SV2_POS_, resources.GetString("SV2_POS_.ToolTip")); this.SV2_POS_.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_srvpos2_Validating); // // SV1_POS_ // resources.ApplyResources(this.SV1_POS_, "SV1_POS_"); this.SV1_POS_.Name = "SV1_POS_"; - this.toolTip1.SetToolTip(this.SV1_POS_, resources.GetString("SV1_POS_.ToolTip")); this.SV1_POS_.Validating += new System.ComponentModel.CancelEventHandler(this.TXT_srvpos1_Validating); // // HS3_REV // resources.ApplyResources(this.HS3_REV, "HS3_REV"); this.HS3_REV.Name = "HS3_REV"; - this.toolTip1.SetToolTip(this.HS3_REV, resources.GetString("HS3_REV.ToolTip")); this.HS3_REV.UseVisualStyleBackColor = true; this.HS3_REV.CheckedChanged += new System.EventHandler(this.HS3_REV_CheckedChanged); // @@ -1372,7 +1247,6 @@ // resources.ApplyResources(this.HS2_REV, "HS2_REV"); this.HS2_REV.Name = "HS2_REV"; - this.toolTip1.SetToolTip(this.HS2_REV, resources.GetString("HS2_REV.ToolTip")); this.HS2_REV.UseVisualStyleBackColor = true; this.HS2_REV.CheckedChanged += new System.EventHandler(this.HS2_REV_CheckedChanged); // @@ -1380,7 +1254,6 @@ // resources.ApplyResources(this.HS1_REV, "HS1_REV"); this.HS1_REV.Name = "HS1_REV"; - this.toolTip1.SetToolTip(this.HS1_REV, resources.GetString("HS1_REV.ToolTip")); this.HS1_REV.UseVisualStyleBackColor = true; this.HS1_REV.CheckedChanged += new System.EventHandler(this.HS1_REV_CheckedChanged); // @@ -1388,47 +1261,44 @@ // resources.ApplyResources(this.label17, "label17"); this.label17.Name = "label17"; - this.toolTip1.SetToolTip(this.label17, resources.GetString("label17.ToolTip")); // // HS4 // - resources.ApplyResources(this.HS4, "HS4"); this.HS4.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(68)))), ((int)(((byte)(69))))); this.HS4.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.HS4.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch4in", true)); this.HS4.Label = "Rudder"; + resources.ApplyResources(this.HS4, "HS4"); this.HS4.Maximum = 2200; this.HS4.maxline = 0; this.HS4.Minimum = 800; this.HS4.minline = 0; this.HS4.Name = "HS4"; - this.toolTip1.SetToolTip(this.HS4, resources.GetString("HS4.ToolTip")); this.HS4.Value = 1500; this.HS4.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(148)))), ((int)(((byte)(193)))), ((int)(((byte)(31))))); this.HS4.Paint += new System.Windows.Forms.PaintEventHandler(this.HS4_Paint); // // HS3 // - resources.ApplyResources(this.HS3, "HS3"); this.HS3.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(68)))), ((int)(((byte)(69))))); this.HS3.BorderColor = System.Drawing.SystemColors.ActiveBorder; this.HS3.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.currentStateBindingSource, "ch3in", true)); this.HS3.Label = "Collective"; + resources.ApplyResources(this.HS3, "HS3"); this.HS3.Maximum = 2200; this.HS3.maxline = 0; this.HS3.Minimum = 800; this.HS3.minline = 0; this.HS3.Name = "HS3"; - this.toolTip1.SetToolTip(this.HS3, resources.GetString("HS3.ToolTip")); this.HS3.Value = 1500; this.HS3.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(148)))), ((int)(((byte)(193)))), ((int)(((byte)(31))))); this.HS3.Paint += new System.Windows.Forms.PaintEventHandler(this.HS3_Paint); // // Gservoloc // - resources.ApplyResources(this.Gservoloc, "Gservoloc"); this.Gservoloc.BackColor = System.Drawing.Color.Transparent; this.Gservoloc.BackgroundImage = global::ArdupilotMega.Properties.Resources.Gaugebg; + resources.ApplyResources(this.Gservoloc, "Gservoloc"); this.Gservoloc.BaseArcColor = System.Drawing.Color.Transparent; this.Gservoloc.BaseArcRadius = 60; this.Gservoloc.BaseArcStart = 90; @@ -1561,7 +1431,6 @@ this.Gservoloc.ScaleNumbersRotation = 45; this.Gservoloc.ScaleNumbersStartScaleLine = 2; this.Gservoloc.ScaleNumbersStepScaleLines = 1; - this.toolTip1.SetToolTip(this.Gservoloc, resources.GetString("Gservoloc.ToolTip")); this.Gservoloc.Value = 0F; this.Gservoloc.Value0 = -60F; this.Gservoloc.Value1 = 60F; @@ -1575,7 +1444,6 @@ this.Controls.Add(this.tabControl1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Name = "Setup"; - this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip")); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Setup_FormClosing); this.Load += new System.EventHandler(this.Setup_Load); this.tabControl1.ResumeLayout(false); diff --git a/Tools/ArdupilotMegaPlanner/Setup/Setup.cs b/Tools/ArdupilotMegaPlanner/Setup/Setup.cs index 2b55175ff8..c40d138e23 100644 --- a/Tools/ArdupilotMegaPlanner/Setup/Setup.cs +++ b/Tools/ArdupilotMegaPlanner/Setup/Setup.cs @@ -1055,8 +1055,8 @@ namespace ArdupilotMega.Setup try { #if MAVLINK10 - int fixme; - // MainV2.comPort.doCommand(MAVLink.MAV_ACTION.MAV_ACTION_CALIBRATE_ACC); + int fixme; // needs to be accel only + MainV2.comPort.doCommand(MAVLink.MAV_CMD.PREFLIGHT_CALIBRATION,1,1,1,1,1,1,1); #else MainV2.comPort.doAction(MAVLink.MAV_ACTION.MAV_ACTION_CALIBRATE_ACC); #endif diff --git a/Tools/ArdupilotMegaPlanner/Setup/Setup.resx b/Tools/ArdupilotMegaPlanner/Setup/Setup.resx index db16ceae3d..d1d8d1e2a1 100644 --- a/Tools/ArdupilotMegaPlanner/Setup/Setup.resx +++ b/Tools/ArdupilotMegaPlanner/Setup/Setup.resx @@ -117,2613 +117,1853 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 135 + + + NoControl - - 674, 419 - - - - 2, 0, 2, 0 - - - 94 - - - 129 - - - Zero - - - Zoom - - - 100 - - - 24, 13 - - - 170, 25 - - - 98 - - - - - - 305, 50 - - - 13 - - - 2 - - - label26 - - - HS2_TRIM - - - NoControl - - - 28, 227 - - - label3 - - - - - - NoControl - - - 390, 80 - - - CB_simple4 - - - 69, 23 - - - SV1_POS_ - - - NoControl - - - Hardware - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - PWM 1750 + - - - Enable Compass - - - Amperes per volt: - - - tabBattery - - - NoControl - - - True - - - 119 - - - NoControl - - - 2 - - - 15, 14 - - - Flight Mode 6 - - - 13, 13 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabHardware - - - - - - 10 - - - label40 - - - 103, 17 - - - 2 - - - 2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23, 248 - - - 256, 345 - - - 25 - - - 245, 179 - - - True - - - Manual - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pictureBox5 - - - 15 - - - NoControl - - - Flight Mode 5 - - - 0 - - - label41 - - - tabModes - - - label7 - - - tabModes - - - 3 - - - - - - tabBattery - - - Swash-Servo position - - - CHK_revch4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - label42 - - - 21 - - - 103 - - - pictureBox4 - - - False - - - TXT_divider - - - 0 - - - label46 - - - 7 - - - 114 - - - - - - groupBox3 - - - tabHardware - - - True - - - 122 - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 66, 17 - - - label22 - - - 41, 35 - - - 115 - - - Voltage divider: - - - 20 - - - tabBattery - - - 0: Disabled - - - tabHeli - - - tabArducopter - - - 29, 270 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - 5 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2, 0, 2, 0 - - - PWM 1361 - 1490 - - - CMB_fmode2 - - - 16 - - - CB_simple2 - - - 506, 155 - - - tabModes - - - NoControl - - - pictureBox1 - - - 162, 180 - - - 93 - - - 14 - - - toolTip1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - Flight Mode 2 - - - 8 - - - - - - label100 - - - tabHardware - - - CHK_enablesonar - - - NoControl - - - 446, 185 - - - 1 - - - 162, 245 - - - HS4_MIN - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 168, 209 - - - 26 - - - - - - tabBattery - - - 94, 13 - - - tabHeli - - - 168, 155 - - - NoControl - - - 106 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabRadioIn - - - 11 - - - tabBattery - - - 4, 22 - - - 1 - - - 87, 17 - - - textBox3 - - - False - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label29 - - - Trim - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 78, 25 - - - - - - tabHeli - - - 48, 13 - - - tabControl1 - - - 2, 0, 2, 0 - - - NOTE: images are for presentation only -will work with hexa's etc - - - 66, 17 - - - 2 - - - Calibrate Radio - - - 2, 2, 2, 2 - - - 5 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flight Mode 1 - - - NoControl - - - 94 - - - True - - - 101, 225 - - - 1 - - - - - - 6 - - - NoControl - - - 380, 154 - - - - - - label14 - - - - - - tabBattery - - - 2, 2, 2, 2 - - - - - - 76, 20 - - - label43 - - - NoControl - - - 315, 310 - - - tabModes - - - Flight Mode 4 - - - - - - True - - - 288, 23 - - - True - - - - - - 13, 13 - - - 2 - - - System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2, 2, 2, 2 - - - True - - - 96 - - - 23 - - - 104 - - - 39, 20 - - - - - - 1500 - - - 2, 2, 2, 2 - - - - - - 134, 23 - - - 256, 321 - - - 104, 13 - - - 76, 20 - - - 37 - - - 2 - - - Current Mode: - - - 121, 23 - - - 42, 13 - - - Magnetic Declination (-20.0 to 20.0) eg 2° 3' W is -2.3 - - - 3 - - - - - - tabBattery - - - 57, 19 - - - 82 - - - 1 - - - NoControl - - - 71, 13 - - - NoControl - - - 107 - - - 245, 98 - - - tabArducopter - - - True - - - pictureBoxQuad - - - tabArducopter - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - 12 - - - - - - tabBattery - - - 10 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 25 - - - BUT_Calibrateradio - - - 30 - - - 69, 23 - - - CMB_fmode6 - - - 134 - - - True - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - tabBattery - - - NoControl - - - - - - 2 - - - 3 - - - 44, 20 - - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 43, 20 - - - 11 - - - 6 - - - - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabModes - - - True - - - - - - 87, 17 - - - NoControl - - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 12 - - - 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 - - - 506, 209 - - - 5 - - - - - - 25 - - - True - - - Zoom - - - 90, 17 - - - 28 - - - 108 - - - True - - - 0 - - - 1 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Enable Airspeed - - - $this - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabModes - - - BARthrottle - - - tabHeli - - - 168, 128 - - - 105 - - - - - - -60 - - - 126 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - 33 - - - NoControl - - - 32 - - - label16 - - - True - - - 27, 13 - - - NoControl - - - 32 - - - groupBox1 - - - tabBattery - - - 7 - - - tabRadioIn - - - 274, 67 - - - 22 - - - - - - ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - HS3_REV - - - 95 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 105 - - - - - - True - - - groupBox1 - - - 0 - - - 4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label17 - - - 6 - - - 169, 78 - - - 22 - - - - - - CMB_batmontype - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2, 2, 2, 2 - - - 6 - - - 92 - - - 44, 20 - - - CMB_fmode4 - - - NoControl - - - - - - - - - 93 - - - 78, 106 - - - - - - tabBattery - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - NoControl - - - ROL_MAX_ - - - 18, 45 - - - 43, 20 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 47, 211 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4, 22 - - - tabRadioIn - - - Gain - - - Min - - - - - - 10 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15, 14 - - - tabHeli - - - tabModes - - - False - - - 110 - - - Zoom - - - 506, 101 - - - 10 - - - tabHeli - - - tabModes - - - ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tabRadioIn - - - System.Windows.Forms.TextBox, 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 - - - HS3_TRIM - - - 43, 20 - - - 83, 20 - - - 118 - - - True - - - 94, 13 - - - TXT_battcapacity - - - label12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 91 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - 3 - - - Enable - - - True - - - label2 - - - 102 - - - Zoom - - - label6 - - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 8 - - - tabModes - - - 24, 28 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - 42, 13 - - - Swash Travel - - - 210, 13 - - - label13 - - - 121, 21 - - - 9 - - - BAR8 - - - 54, 13 - - - 28 - - - 35 - - - tabArducopter - - - 132 - - - 117 - - - 0 - - - 7 - - - Monitor - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - Level your quad to set default accel offsets - - - 19 - - - 6 - - - - - - 3 - - - 162, 56 - - - Reverse - - - 121, 21 - - - 446, 130 - - - 36 - - - 2, 0, 2, 0 - - - 4: Volts & Current - - - tabHeli - - - 24 - - - 106, 40 - - - NoControl - - - True - - - 19 - - - 3 - - - True - - - 128 - - - Current PWM: - - - label31 - - - 13 - - - 23 - - - 499, 225 - - - 0 - - - tabBattery - - - 97 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HS1_TRIM - - - - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox1 - - - tabRadioIn - - - ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - tabHeli - - - NoControl - - - 71, 13 - - - 44, 20 - - - 479, 138 - - - tabRadioIn - - - 12 - - - Top - - - - - - currentStateBindingSource - - - 383, 57 - - - 242, 67 - - - 21 - - - CHK_enableairspeed - - - 2 - - - HS1_REV - - - 76, 20 - - - tabModes - - - CHK_enablecompass - - - 132 - - - tabHeli - - - 28 - - - tabHeli - - - tabModes - - - True - - - 101, 248 - - - 29, 13 - - - 14 - - - tabModes - - - Flight Mode 3 - - - 20 - - - NoControl - - - 293, 52 - - - 87, 17 - - - 87, 17 - - - 121, 21 - - - 180 - - - 87, 17 - - - groupBox1 - - - 11 - - - NoControl - - - 131 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - tabHeli - - - 168, 101 - - - Microsoft Sans Serif, 9pt - - - NoControl - - - Rudder - - - label44 - - - - - - tabModes - - - Zoom - - - 135 - - - 674, 419 - - - 476, 23 - - - 190, 190 - - - 168, 236 - - - 94, 13 - - - 0 - - - 28, 183 - - - groupBox3 - - - Zoom - - - 482, 340 - - - 506, 128 - - - 4, 22 - - - tabModes - - - tabHeli - - - tabHeli - - - 123, 50 - - - 9 - - - 6 - - - PWM 0 - 1230 - - - True - - - 190, 190 - - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 15, 14 - - - True - - - tabRadioIn - - - 2 - - - True - - - Manual - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Level - - - 666, 393 - - - False - - - 2 - - - 4 - - - 242, 42 - - - CMB_fmode3 - - - 121, 21 - - - True - - - NoControl - - - TXT_measuredvoltage - - - tabHeli - - - tabHeli - - - True - - - 5 - - - 21, 304 + + 214, 161 195, 23 - - Simple Mode - - - 113 - - - 428, 62 - - - tabModes - - + + 0 - - 75, 75 + + Reset APM Hardware to Default - - 666, 393 - - - BUT_0collective - - - 5 - - - 111 - - - 235, 52 - - - label34 - - - 4 - - - tabHeli - - - - - - - - - 96 - - - Bottom - - - 359, 61 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7 - - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 44, 20 - - - tabHeli - - - label33 - - - - - - 71, 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 31 - - - 115 - - - Pitch Max - - - 109 - - - 245, 206 - - - label35 - - - True - - - - - - NoControl - - - 87, 17 - - - 112 - - - - - - 101 - - - 26 - - - groupBox2 - - - 106 - - - 71, 13 - - - 118 - - - NoControl + + BUT_reset - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - + + tabReset - - True + + 0 - - tabModes + + 4, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 666, 393 - - NoControl + + 4 - - 5 + + Reset - + + tabReset + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tabControl1 - - 13, 13 + + 0 - + True - - 3 - - - 0, 0 - - - NoControl - - - 28, 205 - - - 192, 26 - - - 42, 213 - - - tabModes - - + NoControl 287, 158 - - 75, 75 + + 66, 17 - - 26, 13 + + 106 - - 81 + + Reverse - + + CHK_revch3 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabRadioIn + + + 0 + + True - - tabModes - - + NoControl + + 315, 310 + + + 66, 17 + + + 105 + + + Reverse + + + CHK_revch4 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabRadioIn + + + 1 + + + True + + + NoControl + + + 71, 158 + + + 66, 17 + + + 104 + + + Reverse + + + CHK_revch2 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabRadioIn + + + 2 + + + True + + + NoControl + + + 315, 12 + + + 66, 17 + + + 103 + + + Reverse + + + CHK_revch1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabRadioIn + + + 3 + NoControl - - 0 + + 482, 340 - - + + 134, 23 - - + + 102 - - PWM 1231 - 1360 + + Calibrate Radio - - NoControl + + BUT_Calibrateradio - - NoControl + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - 19, 157 - - - 72, 13 - - - BUT_reset - - - 93 - - - - - - tabControl1 - - - 75, 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox2 - - - Radio Input - - - label30 - - - 42, 13 - - - - - - 121, 20 - - - 15 - - - BARyaw - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 150, 150 - - - 125 - - - 177, 46 - - - 105, 17 - - - 76, 20 - - - 18, 173 - - - Rudder Travel - - - 2, 2, 2, 2 - - - GYR_GAIN_ - - - Battery voltage: - - - NoControl - - - 27 - - - Rev - - - 1500 - - - BUT_SaveModes - - - Enable Sonar - - - True - - - 31 - - - 217, 38 - - - 1500 - - - 38 - - - 1 - - - tabModes - - - 130 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label24 - - - 137 - - - - - - 380, 127 - - - 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox3 - - - - - - SV2_POS_ - - - - - - 4 - - - label36 - - - - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 27, 23 - - + tabRadioIn - - 27 + + 4 - - 4500 + + 17, 17 + + + 446, 240 - - tabHeli + + 170, 25 - - CB_simple1 + + 101 - - tabHeli + + BAR8 - - True + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - + + tabRadioIn - - tabArducopter + + 5 - + + 446, 185 + + + 170, 25 + + + 100 + + + BAR7 + + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabRadioIn + + + 6 + + + 446, 130 + + + 170, 25 + + + 99 + + + BAR6 + + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabRadioIn + + + 7 + + + 446, 75 + + + 170, 25 + + 98 - - CB_simple5 + + BAR5 - - + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabRadioIn - - groupBox2 + + 8 - - + + 143, 61 - - 2, 2, 2, 2 + + 47, 211 - - NoControl + + 96 - - + + BARpitch - - 116 + + ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - True - - - label37 + + tabRadioIn 9 - - 27, 13 + + 359, 61 + + + 47, 211 + + + 95 + + + BARthrottle + + + ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabRadioIn + + + 10 + + + 21, 304 288, 23 + + 94 + + + BARyaw + + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabRadioIn + + + 11 + + + 21, 6 + + + 288, 23 + + + 93 + + + BARroll + + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabRadioIn + + + 12 + + + 4, 22 + + + 3, 3, 3, 3 + + + 666, 393 + + + 0 + + + Radio Input + + + tabRadioIn + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControl1 + + + 1 + + + True + + + NoControl + + + 380, 235 + + + 2, 2, 2, 2 + + + 87, 17 + + + 119 + + + Simple Mode + + + CB_simple6 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 0 + + + True + + + NoControl + + + 380, 208 + + + 2, 2, 2, 2 + + + 87, 17 + + + 118 + + + Simple Mode + + + CB_simple5 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 1 + + + True + + + NoControl + + + 380, 181 + + + 2, 2, 2, 2 + + + 87, 17 + + + 117 + + + Simple Mode + + + CB_simple4 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 2 + + + True + + + NoControl + + + 380, 154 + + + 2, 2, 2, 2 + + + 87, 17 + + + 116 + + + Simple Mode + + + CB_simple3 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 3 + + + True + + + NoControl + + + 380, 127 + + + 2, 2, 2, 2 + + + 87, 17 + + + 115 + + + Simple Mode + + + CB_simple2 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 4 + + + True + + + 380, 100 + + + 2, 2, 2, 2 + + + 87, 17 + + + 114 + + + Simple Mode + + + CB_simple1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 5 + + + True + + + NoControl + + + 242, 67 + + + 74, 13 + + + 113 + + + Current PWM: + + + label14 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 6 + + + True + + + NoControl + + + 322, 67 + + + 13, 13 + + + 112 + + + 0 + + + LBL_flightmodepwm + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 7 + + + True + + + NoControl + + + 242, 50 + + + 74, 13 + + + 111 + + + Current Mode: + + + label13 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 8 + + + True + + + NoControl + + + 322, 50 + + + 42, 13 + + + 110 + + + Manual + + + lbl_currentmode + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 9 + + + True + + + NoControl + + + 506, 101 + + + 76, 13 + + + 109 + + + PWM 0 - 1230 + + + False + + + label12 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 10 + + + True + + + NoControl + + + 506, 236 + + + 70, 13 + + + 108 + + + PWM 1750 + + + + False + + + label11 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 11 + + + True + + + NoControl + + + 506, 209 + + + 94, 13 + + + 107 + + + PWM 1621 - 1749 + + + False + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 12 + + + True + + + NoControl + + + 506, 182 + + + 94, 13 + + + 106 + + + PWM 1491 - 1620 + + + False + + + label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 13 + + + True + + + NoControl + + + 506, 155 + + + 94, 13 + + + 105 + + + PWM 1361 - 1490 + + + False + + + label8 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabModes + + + 14 + + + True + + + NoControl + + + 506, 128 + + + 94, 13 + + + 104 + + + PWM 1231 - 1360 + + + False + + + label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 15 + + + True + NoControl - + + 168, 236 + + + 71, 13 + + + 11 + + + Flight Mode 6 + + + label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 16 + + + 245, 233 + + + 121, 21 + + + 10 + + + CMB_fmode6 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 17 + + True - + + NoControl + + + 168, 209 + + + 71, 13 + + + 9 + + + Flight Mode 5 + + + label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 18 + + + 245, 206 + + + 121, 21 + + + 8 + + + CMB_fmode5 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 19 + + + True + + + NoControl + + + 168, 182 + + + 71, 13 + + + 7 + + + Flight Mode 4 + + + label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 20 + + + 245, 179 + + + 121, 21 + + + 6 + + + CMB_fmode4 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 21 + + + True + + + NoControl + + + 168, 155 + + + 71, 13 + + + 5 + + + Flight Mode 3 + + + label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 22 + + + 245, 152 + + + 121, 21 + + + 4 + + + CMB_fmode3 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 23 + + + True + + + NoControl + + + 168, 128 + + + 71, 13 + + + 3 + + + Flight Mode 2 + + + label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 24 + + + 245, 125 + + + 121, 21 + + + 2 + + + CMB_fmode2 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 25 + + + True + + + NoControl + + + 168, 101 + + + 71, 13 + + + 1 + + + Flight Mode 1 + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 26 + + + 245, 98 + + + 121, 21 + + + 0 + + + CMB_fmode1 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabModes + + + 27 + + NoControl 245, 260 - - tabBattery + + 121, 23 - - + + 103 - - 5 + + Save Modes - - HS4_TRIM + + BUT_SaveModes - - 16, 50 + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c - - pictureBox3 + + tabModes - - 2, 2, 2, 2 + + 28 - - 117 + + 4, 22 - - tabHardware + + 666, 393 - - Servo + + 3 - - 8 + + Modes - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabModes - - tabHeli + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tabControl1 + + + 2 + + + True + + NoControl - - Simple Mode + + 390, 80 - + + 104, 13 + + + 28 + + + Declination WebSite + + + linkLabelmagdec + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 0 + + + NoControl + + + 310, 57 + + + 60, 13 + + + 23 + + + Declination + + + label100 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - Simple Mode - - - Reset APM Hardware to Default - tabHardware - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Simple Mode - - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2, 2, 2, 2 - - - Simple Mode - - - 15, 14 - - - 122, 271 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox2 - - - ArduCopter2 - - - NoControl - - - 71, 13 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 133 - - - Position - - - tabRadioIn - - - - - - - - - 4 - - - NoControl - - - 5 - - - BAR6 - - - 119 - - - 76, 13 - - - NoControl - - - 89, 13 - - - 5 - - - 33 - - - 0 - - - 0 - - - label32 - - - - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 3, 3, 3 - - - label23 - - - PWM 1621 - 1749 - - - True - - - 114 - - - - - - 58, 23 - - - 127, 206 - - - tabModes - - - lbl_currentmode - - - True - - - NoControl - - - BUT_HS4save - - - 0 - - - True - - - - - - tabControl1 - - - groupBox3 - - - BARroll - - - 76, 20 - - - label4 - - - label28 - - - 30 - - - tabHeli - - - 11, 89 - - - label8 - - + 1 - - + + 383, 57 - - CMB_fmode1 - - - NoControl - - - tabBattery - - - 39, 20 - - - COL_MIN_ - - - 162, 214 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - Reverse - - - tabRadioIn - - - 4 - - - - - - tabModes - - - 502, 244 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5 - - - label38 - - - 122 - - - 89 + + 121, 20 20 - - 133 + + 214, 17 + + + Magnetic Declination (-20.0 to 20.0) eg 2° 3' W is -2.3 - - 13, 206 + + TXT_declination + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 2 + + + NoControl + + + 162, 214 + + + 103, 17 + + + 24 + + + Enable Airspeed + + + CHK_enableairspeed + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 3 + + + NoControl + + + 159, 136 + + + 90, 17 + + + 25 + + + Enable Sonar + + + CHK_enablesonar + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 4 + + + NoControl + + + 162, 56 + + + 105, 17 + + + 27 + + + Enable Compass + + + CHK_enablecompass + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 5 + + + Zoom + + + NoControl + + + 78, 188 + + + 75, 75 + + + 3 + + + pictureBox4 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tabHardware - - 53, 271 + + 6 - + + Zoom + + NoControl - - NoControl + + 78, 106 - - tabModes + + 75, 75 - - Simple Mode + + 2 - - 4 + + pictureBox3 - - Roll Max + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 5 - - - 38, 23 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label39 + + tabHardware 7 - + + Zoom + + + + NoControl + + + + + + 78, 25 + + + 75, 75 + + + 0 + + + pictureBox1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHardware + + + 8 + + + 4, 22 + + + 3, 3, 3, 3 + + + 666, 393 + + + 1 + + + Hardware + + + tabHardware + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControl1 + + + 3 + + + 162, 267 + + + 2, 2, 2, 2 + + + 76, 20 + + + 38 + + + TXT_ampspervolt + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 0 + + + 162, 245 + + + 2, 2, 2, 2 + + + 76, 20 + + + 37 + + + TXT_divider + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 1 + + + 162, 224 + + + 2, 2, 2, 2 + + + 76, 20 + + + 36 + + + TXT_voltage + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 2 + + + 162, 202 + + + 2, 2, 2, 2 + + + 76, 20 + + + 35 + + + TXT_measuredvoltage + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 3 + + + 162, 180 + + + 2, 2, 2, 2 + + + 76, 20 + + + 34 + + + TXT_inputvoltage + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 4 + + + True + + + NoControl + + + 29, 270 + + + 2, 0, 2, 0 + + + 89, 13 + + + 33 + + + Amperes per volt: + + + label35 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 5 + + + True + + + NoControl + + + 28, 248 + + + 2, 0, 2, 0 + + + 80, 13 + + + 32 + + + Voltage divider: + + + label34 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 6 + + + True + + + NoControl + + + 28, 227 + + + 2, 0, 2, 0 + + + 81, 13 + + + 31 + + + Battery voltage: + + + label33 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 7 + + + True + + + NoControl + + + 28, 205 + + + 2, 0, 2, 0 + + + 130, 13 + + + 30 + + + Measured battery voltage: + + + label32 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 8 + + + True + + + NoControl + + + 28, 183 + + + 2, 0, 2, 0 + + + 72, 13 + + + 29 + + + Input voltage: + + + label31 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tabBattery - + + 9 + + + 31, 110 + + + 2, 2, 2, 2 + + True - - + + 428, 62 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - True - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 170, 25 - - - - - - Gservoloc - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - 4500 - - - 7 - - - - - - APMSetup - - - 74, 13 - - - tabHeli + + 28 Voltage sensor calibration: @@ -2731,1417 +1971,1781 @@ will work with hexa's etc 2. Measure battery voltage and enter it to the box below 3. From current sensor datasheet, enter amperes per volt value to the box below - - 170, 25 + + textBox3 - - tabModes - - - 232, 23 - - - Reset - - - 3 - - - 446, 75 - - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tabBattery + + + 10 + + True - - 75, 75 + + NoControl - - HS4_MAX + + 305, 50 - - Save Modes + + 48, 13 - - 25 + + 23 - - + + Capacity - - 44, 20 + + label29 - - 6, 13 - - - - - - tabHardware - - - tabHeli - - - 26 - - - 29 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox1 - - - 322, 67 - - - 446, 240 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CHK_revch1 + + tabBattery - - 245, 233 + + 11 - - Declination - - - 66, 17 - - + NoControl - - Gyro + + 123, 50 - - tabArducopter + + 42, 13 - - Measured battery voltage: + + 24 - - 0, 0, 0, 0 + + Monitor - - tabRadioIn + + label30 - - 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 + + tabBattery - - 134 + + 12 - - tabHeli + + 366, 47 - - 3: Battery Volts + + 83, 20 + + + 25 + + + TXT_battcapacity + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 13 + + + 0: Disabled + + + 1: 3 Cell 2: 4 Cell - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3: Battery Volts - - 35, 13 + + 4: Volts & Current - - Max + + 177, 46 - - + + 121, 21 - - 110 + + 26 - + + CMB_batmontype + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 14 + + + Zoom + + NoControl - + + 31, 21 + + + 75, 75 + + + 2 + + + pictureBox5 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabBattery + + + 15 + + + 4, 22 + + + 2, 2, 2, 2 + + + 666, 393 + + + 6 + + + Battery + + + tabBattery + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControl1 + + + 4 + + + True + + + NoControl + + + 217, 38 + + + 210, 13 + + + 9 + + + Level your quad to set default accel offsets + + + label28 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabArducopter + + + 0 + + + True + + + NoControl + + + 217, 333 + + + 192, 26 + + + 7 + + + NOTE: images are for presentation only +will work with hexa's etc + + + label16 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabArducopter + + 1 - + + True + + + NoControl + + + 260, 124 + + + 102, 13 + + + 6 + + + Frame Setup (+ or x) + + + label15 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabArducopter + + + 2 + + + NoControl + + + 319, 140 + + + 190, 190 + + + Zoom + + + 5 + + + pictureBoxQuadX + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabArducopter + + + 3 + + + NoControl + + + 112, 140 + + + 190, 190 + + + Zoom + + + 4 + + + pictureBoxQuad + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabArducopter + + + 4 + + + NoControl + + + 274, 67 + + + 75, 23 + + + 8 + + + Level + + + BUT_levelac2 + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabArducopter + + + 5 + + + 4, 22 + + + 666, 393 + + + 2 + + + ArduCopter2 + + + tabArducopter + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControl1 + + + 5 + + True NoControl - - - - - Rev - - - Zoom - - - NoControl - - - True - - - 31, 110 - - - 15, 14 - - - NoControl - - - 121, 21 - - - 0 - - - 170, 25 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - linkLabelmagdec - - - 136 - - - 506, 182 - - - - - - pictureBoxQuadX - - - True - - - tabBattery - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 214, 161 - - - - - - - - - 506, 236 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 119 - - - - - - 98, 206 - - - True - - - - - - 6, 19 - - - tabRadioIn - - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 666, 393 - - - 380, 100 - - - tabHeli - - - Fill - - - COL_MID_ - - - NoControl - - - HS4 - - - 108 - - - 4, 22 - - - 18 - - - Battery - - - Reverse - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 21, 6 - - - - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 122, 219 - - - NoControl - - - 27, 13 - - - 380, 181 - - - PIT_MAX_ - - - 451, 245 - - - Capacity - - - label15 - - - HS4_REV - - - 162, 202 - - - HS2_REV - - - True - - - 112, 140 - - - - - - HS3 - - - System.Windows.Forms.PictureBox, 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 - - - 2, 2, 2, 2 - - - Reverse - - - 366, 47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 107 - - - 245, 152 - - - - - - - - - TXT_voltage - - - 53, 219 - - - SV3_POS_ - - - NoControl - - - 4 - - - 8 - - - 44, 13 - - - NoControl - - - tabBattery - - - NoControl - - - 34 - - - 117 - - - NoControl - - - 60, 13 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabRadioIn - 6, 38 - - 48, 13 + + 29, 13 - - tabHeli + + 137 - - + + Gain - - 6 - - - ArdupilotMega.MyButton, 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 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BUT_levelac2 - - - 2 - - - - - - Modes - - - Trim - - - tabHardware - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 666, 393 - - - label9 - - - - - - tabHardware - - - tabModes - - - 2, 2, 2, 2 - - - BARpitch - - - - - - TXT_inputvoltage - - - 4, 22 - - - 28 - - - 666, 393 - - - tabReset - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15 - - - 11 - - - 109 - - - True - - - - - - 109, 13 - - - label10 - - - 2 - - - True - - - tabControl1 - - - 1 - - - 310, 316 - - - 122, 245 - - - 9 - - - 11 - - - True - - - 80, 209 - - - 78, 188 - - - label1 - - - tabControl1 - - - NoControl - - - ArdupilotMega.MyButton, 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 - - - 27 - - - - - - 66, 17 - - - True - - - label11 - - - 242, 50 - - - 130, 13 - - - 380, 235 - - - tabHeli - - - 4 - - - tabHeli - - - tabHeli - - - BAR5 - - - tabHeli - - - tabModes - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BAR7 - - - 3 - - - 535, 241 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BUT_swash_manual - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabHeli - - - 1000 - - - 40, 13 - - - tabModes - - - 23, 222 - - - NoControl - - - 47, 20 - - - 217, 333 - - - tabReset - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 162, 224 - - - NoControl - - - 4, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - CHK_revch2 + + label46 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 3, 3, 3 - - - 24 - - - 121 - - - 101, 63 - - - 2 - - - 94, 13 - - - 168, 182 - - - 43, 20 - - - label5 - - - 50, 206 - - - True - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 24 - - - 47, 20 - - - - - - 10 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - LBL_flightmodepwm - - - True - - - NoControl - - - - - - - - - CB_simple3 - - - 75, 23 - - - - - - 116 - - - tabHeli - - - TXT_ampspervolt - - - 34 - - - tabModes - - - 666, 393 - - - 72, 13 - - - - - - CB_simple6 - - - - - - 115 - - + groupBox3 - - 47, 211 - - - True - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 245, 125 - - - 319, 140 - - - - - - 28, 248 - - - NoControl - - - 27, 13 - - - 35 - - - 315, 12 - - - - - - True - - - GYR_ENABLE_ - - - 81, 13 - - - True - - - 74, 13 - - - tabModes - - - 143, 61 - - - 80, 13 - - - NoControl - - - 433, 143 - - - - - - 21, 40 - - - 121, 21 - - - NoControl - - - TXT_declination - - - - - - tabControl1 - - - 71, 158 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + 0 - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - CHK_revch3 - - - - - - - - - 2, 2, 2, 2 - - - 127 - - - 3 - - - tabHeli - - - 6 - - - 104 - - - 99 - - - 2, 0, 2, 0 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - tabControl1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 310, 342 - - - 7 - - - 6 - - - tabHeli - - - label18 - - - 159, 136 - - - tabControl1 - - - AC2 Heli - - - 18 - - - - - - True - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 124 - - - - - - 1500 - - - - - - 121, 21 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - - - - - - - NoControl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 310, 57 - - - tabArducopter - - - 17, 117 - - - NoControl - - - Manual - - - Setup - - - 4 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - label25 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 120 - - - tabModes - - - 2, 2, 2, 2 - - - 70, 13 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 102, 13 - - - AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 40, 13 - - - 666, 393 - - - 101, 274 - - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - 123 - - - tabModes - - - 433, 271 - - - - - - Frame Setup (+ or x) - - - 1 - - - 103 - - - - - - Input voltage: - - - False - - - 17 - - - - - - tabRadioIn - - - 90 - - - - - - label19 - True - - ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - - - - 29 - - - - - - 322, 50 - - - CMB_fmode5 - - - - - - 0 - - - 75, 75 - - - 162, 267 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 19 - - 23 + + 40, 13 - - + + 136 - - 101 - - - - - - 3 - - - tabHeli - - - tabBattery - - - 39, 20 - - - True - - - groupBox1 - - - 31, 21 - - - 112, 23 - - - 24 - - - 532, 225 - - - 9 - - - groupBox2 - - - 392, 50 - - - 298, 47 - - - 13, 13 - - - 60 - - - - - - NoControl - - - - - - - - - - - - label20 - - - 1 - - - 95 - - - tabHardware - - - tabHeli - - - COL_MAX_ - - - PWM 1491 - 1620 - - - - - - - - - 260, 124 - - - groupBox1 - - - Declination WebSite + + Enable label45 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox3 - + 1 - - 4, 22 + + True - - + + NoControl + + + 57, 19 + + + 15, 14 + + + 118 + + + GYR_ENABLE_ + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 2 + + + 41, 35 47, 20 - - 13 + + 119 - + + 1000 + + + GYR_GAIN_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 3 + + + 433, 271 + + + 101, 63 + + + 135 + + + Gyro + + + groupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + 0 - - ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + True - - 23, 274 + + NoControl - + + 532, 225 + + 27, 13 + + 134 + + + Trim + + + label44 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 1 + + + True + + + NoControl + + + 499, 225 + + + 27, 13 + + + 133 + + + Rev + + + label43 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 2 + + + True + + + 451, 245 + + + 42, 13 + + + 132 + + + Rudder + + + label42 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 3 + + + NoControl + + + 479, 138 + + + 69, 23 + + + 131 + + + Manual + + + BUT_HS4save + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabHeli + + + 4 + + + True + + + NoControl + + + 112, 23 + + + 27, 13 + + + 135 + + + Max + + + label24 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 0 + + + 21, 40 + + + 43, 20 + + + 132 + + + 1500 + + + HS4_MIN + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 1 + + + 106, 40 + + + 43, 20 + + + 133 + + + 1500 + + + HS4_MAX + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 2 + + + True + + + NoControl + + + 27, 23 + + + 24, 13 + + + 134 + + + Min + + + label40 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 3 + + + 433, 143 + + + 169, 78 + + + 130 + + + groupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 5 + + + 298, 47 + + + 69, 23 + + + 0 + + + Manual + + + BUT_swash_manual + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabHeli + + + 6 + + + True + + + NoControl + + + 19, 157 + + + 40, 13 + + + 122 + + + Bottom + + + label41 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 0 + + + True + + + 24, 28 + + + 26, 13 + + + 120 + + + Top + label21 - - 380, 208 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - 16 + + 1 - - 53, 245 + + 18, 173 + + + 43, 20 + + + 119 + + + 1500 + + + COL_MIN_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 2 + + + 17, 117 + + + 44, 20 + + + 117 + + + 1500 + + + COL_MID_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 3 + + + 18, 45 + + + 43, 20 + + + 115 1500 - - 1: 3 Cell + + COL_MAX_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 4 + + + NoControl + + + 11, 89 + + + 58, 23 + + + 110 + + + Zero + + + BUT_0collective + + + ArdupilotMega.MyButton, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + groupBox1 + + + 5 + + + 293, 52 + + + 80, 209 + + + 129 + + + groupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 7 + + + 535, 241 + + + 44, 20 + + + 128 + + + HS4_TRIM + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 8 + + + 122, 271 + + + 44, 20 + + + 127 + + + HS3_TRIM + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 9 + + + 122, 245 + + + 44, 20 + + + 126 + + + HS2_TRIM + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 10 + + + 122, 219 + + + 44, 20 + + + 125 + + + HS1_TRIM + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 11 + + + True + + + NoControl + + + 127, 206 + + + 27, 13 + + + 124 + + + Trim + + + label39 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 12 + + + True + + + NoControl + + + 98, 206 + + + 27, 13 + + + 123 + + + Rev + + + label38 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 13 + + + True + + + NoControl + + + 50, 206 + + + 44, 13 + + + 122 + + + Position + + + label37 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 14 + + + True + + + NoControl + + + 13, 206 + + + 35, 13 + + + 121 + + + Servo + + + label36 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 15 + + + True + + + NoControl + + + 256, 345 + + + 54, 13 + + + 117 + + + Pitch Max + + + label26 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 16 + + + 310, 342 + + + 47, 20 + + + 116 + + + 4500 + + + PIT_MAX_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 17 + + + True + + + NoControl + + + 256, 321 + + + 48, 13 + + + 115 + + + Roll Max + + + label25 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 18 + + + 310, 316 + + + 47, 20 + + + 114 + + + 4500 + + + ROL_MAX_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 19 + + + True + + + NoControl + + + 476, 23 + + + 75, 13 + + + 109 + + + Rudder Travel + + + label23 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 20 + + + True + + + NoControl + + + 232, 23 + + + 72, 13 + + + 101 + + + Swash Travel + + + label22 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 21 + + + True + + + NoControl + + + 502, 244 + + + 15, 14 + + + 98 + + + HS4_REV + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 22 + + + True + + + NoControl + + + 23, 274 + + + 13, 13 + + + 97 + + + 3 + + + label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 23 + + + True + + + NoControl + + + 23, 248 + + + 13, 13 + + + 96 + + + 2 + + + label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 24 + + + True + + + NoControl + + + 23, 222 + + + 13, 13 + + + 95 + + + 1 + + + label18 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 25 + + + 53, 271 + + + 39, 20 + + + 94 + + + 180 + + + SV3_POS_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 26 + + + 53, 245 + + + 39, 20 + + + 93 + + + 60 + + + SV2_POS_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 27 + + + 53, 219 + + + 39, 20 + + + 92 + + + -60 + + + SV1_POS_ + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 28 + + + True + + + NoControl + + + 101, 274 + + + 15, 14 + + + 91 + + + HS3_REV + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 29 + + + True + + + NoControl + + + 101, 248 + + + 15, 14 + + + 90 + + + HS2_REV + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 30 + + + True + + + NoControl + + + 101, 225 + + + 15, 14 + + + 89 + + + HS1_REV + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 31 + + + True + + + NoControl + + + 38, 23 + + + 109, 13 + + + 82 + + + Swash-Servo position + + + label17 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabHeli + + + 32 + + + 392, 50 + + + 242, 42 + + + 108 + + + HS4 + + + ArdupilotMega.HorizontalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabHeli + + + 33 + + + 235, 52 + + + 42, 213 + + + 107 + + + HS3 + + + ArdupilotMega.VerticalProgressBar2, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c tabHeli - - 17 + + 34 - - 71, 13 + + Zoom - - + + Microsoft Sans Serif, 9pt + + + 16, 50 + + + 0, 0, 0, 0 + + + 150, 150 + + + 81 + + + Gservoloc + + + AGaugeApp.AGauge, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + + + tabHeli + + + 35 + + + 4, 22 + + + 666, 393 + + + 5 + + + AC2 Heli + + + tabHeli + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControl1 + + + 6 + + + Fill + + + 0, 0 + + + 674, 419 + + + 93 + + + tabControl1 + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 True - - 17, 17 - - - 214, 17 - + + 6, 13 + + + 674, 419 + + + APMSetup + + + currentStateBindingSource + + + System.Windows.Forms.BindingSource, 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 + + + Setup + + + System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/Tools/ArdupilotMegaPlanner/app.config b/Tools/ArdupilotMegaPlanner/app.config index 6b78cb190d..3c8a8135de 100644 --- a/Tools/ArdupilotMegaPlanner/app.config +++ b/Tools/ArdupilotMegaPlanner/app.config @@ -3,6 +3,10 @@ - + + + + + diff --git a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application index 2ad8510544..038f175f96 100644 --- a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application +++ b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application @@ -3,15 +3,18 @@ + + + - + - d1SWduiRJYsMADkinyiFASzMBV8= + l2Rn8qTiwOzQt8/BkJyqqyHeXA0= diff --git a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config index 6b78cb190d..3c8a8135de 100644 --- a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config +++ b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config @@ -3,6 +3,10 @@ - + + + + + diff --git a/Tools/ArdupilotMegaPlanner/bin/Release/GCSViews/FlightPlanner.resx b/Tools/ArdupilotMegaPlanner/bin/Release/GCSViews/FlightPlanner.resx index 51ec819c4a..4495da6c9f 100644 --- a/Tools/ArdupilotMegaPlanner/bin/Release/GCSViews/FlightPlanner.resx +++ b/Tools/ArdupilotMegaPlanner/bin/Release/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 @@ -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 @@ -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 @@ -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 @@ -2105,6 +2135,6 @@ FlightPlanner - System.Windows.Forms.MyUserControl, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ff91852278f5092c + 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/bin/Release/dataflashlog.xml b/Tools/ArdupilotMegaPlanner/bin/Release/dataflashlog.xml index 186d8d32da..6bb291dd77 100644 --- a/Tools/ArdupilotMegaPlanner/bin/Release/dataflashlog.xml +++ b/Tools/ArdupilotMegaPlanner/bin/Release/dataflashlog.xml @@ -1,133 +1,133 @@ - - - Time - Sats - Lat - Long - Mix Alt - GPSAlt - GR Speed - CRS - - - Roll - Pitch - Yaw - rc1 servo - rc2 servo - rc3 servo - - - WP Dist - Target Bear - Long Err - Lat Err - nav lon - nav lat - nav lon I - nav lat I - Loiter Lon I - Loiter Lat I - - - Yaw Sensor - Nav Yaw - Yaw Error - Sonar Alt - Baro Alt - Next WP Alt - Nav Throttle - Angle boost - Manual boost - rc3 servo out - alt hold int - thro int - - - control mode - yaw mode - r p mode - thro mode - thro cruise - thro int - - - Gyro X - Gyro Y - Gyro Z - Accel X - Accel Y - Accel Z - - - Throttle in - Throttle intergrator - Voltage - Current - Current total - - - - - - Time - Fix - Sats - Lat - Long - Mix Alt - GPSAlt - GR Speed - CRS - - - Roll - Pitch - Yaw - - - Yaw - WP dist - Target Bear - Nav Bear - Alt Err - AS - NavGScaler - - - - - Servo Roll - nav_roll - roll_sensor - Servo Pitch - nav_pitch - pitch_sensor - Servo Throttle - Servo Rudder - AN 4 - - - loop time - Main count - G_Dt_max - Gyro Sat - adc constr - renorm_sqrt - renorm_blowup - gps_fix count - imu_health - - - Gyro X - Gyro Y - Gyro Z - Accel X - Accel Y - Accel Z - - - + + + Time + Sats + Lat + Long + Mix Alt + GPSAlt + GR Speed + CRS + + + Roll + Pitch + Yaw + rc1 servo + rc2 servo + rc3 servo + + + WP Dist + Target Bear + Long Err + Lat Err + nav lon + nav lat + nav lon I + nav lat I + Loiter Lon I + Loiter Lat I + + + Yaw Sensor + Nav Yaw + Yaw Error + Sonar Alt + Baro Alt + Next WP Alt + Nav Throttle + Angle boost + Manual boost + rc3 servo out + alt hold int + thro int + + + control mode + yaw mode + r p mode + thro mode + thro cruise + thro int + + + Gyro X + Gyro Y + Gyro Z + Accel X + Accel Y + Accel Z + + + Throttle in + Throttle intergrator + Voltage + Current + Current total + + + + + + Time + Fix + Sats + Lat + Long + Mix Alt + GPSAlt + GR Speed + CRS + + + Roll + Pitch + Yaw + + + Yaw + WP dist + Target Bear + Nav Bear + Alt Err + AS + NavGScaler + + + + + Servo Roll + nav_roll + roll_sensor + Servo Pitch + nav_pitch + pitch_sensor + Servo Throttle + Servo Rudder + AN 4 + + + loop time + Main count + G_Dt_max + Gyro Sat + adc constr + renorm_sqrt + renorm_blowup + gps_fix count + imu_health + + + Gyro X + Gyro Y + Gyro Z + Accel X + Accel Y + Accel Z + + + \ No newline at end of file diff --git a/Tools/ArdupilotMegaPlanner/bin/Release/mavcmd.xml b/Tools/ArdupilotMegaPlanner/bin/Release/mavcmd.xml index c7a8739df7..001638d71e 100644 --- a/Tools/ArdupilotMegaPlanner/bin/Release/mavcmd.xml +++ b/Tools/ArdupilotMegaPlanner/bin/Release/mavcmd.xml @@ -1,62 +1,478 @@ - -DelayHit RadYaw AngLatLongAlt -LatLongAlt -TurnsLatLongAlt -Time sradyaw per -Alt - -Alt -MAV_ROIWP#ROI# - -Time (sec) -Rate (cm/sec)Alt -Dist (m) -DegSecDir 1=CWrel/abs - -WP #Repeat# -Type (0=as 1=gs)Throttle(%)Speed (m/s) -Current(1)/Spec(0) -#Value -off(0)/on(1)Delay (s) -Delay (s)Repeat# -Ser NoPWM -Ser NoRepeat#Delay (s)PWM - - - - - - - - -LatLongAlt -LatLongAlt -TurnsLatLongAlt -Time sLatLongAlt -LatLongAlt -LatLongAlt -AngleAlt - - -Time (sec) -Rate (cm/sec)Alt -Dist (m) - - -WP #Repeat# -Type (0=as 1=gs)Throttle(%)Speed (m/s) -Current(1)/Spec(0) -#Value -off(0)/on(1)Delay (s) -Delay (s)Repeat# -Ser NoPWM -Ser NoRepeat#Delay (s)PWM - - - - - + + + Delay + Hit Rad + + Yaw Ang + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Turns + + + + Lat + Long + Alt + + + Time s + + rad + yaw per + + + + + + + + + + + + Alt + + + + + + + + + + + + + + + + + + Alt + + + MAV_ROI + WP# + ROI# + + + + + + + + + + + + + + + + Time (sec) + + + + + + + + + Rate (cm/sec) + + + + + + Alt + + + Dist (m) + + + + + + + + + Deg + Sec + Dir 1=CW + rel/abs + + + + + + + + + + + + + + + WP # + Repeat# + + + + + + + + Type (0=as 1=gs) + Throttle(%) + Speed (m/s) + + + + + + + Current(1)/Spec(0) + + + + + + + + + # + Value + + + + + + + + off(0)/on(1) + Delay (s) + + + + + + + + + Repeat# + Delay (s) + + + + + + + Ser No + PWM + + + + + + + + Ser No + Repeat# + Delay (s) + PWM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Turns + + + + Lat + Long + Alt + + + Time s + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Angle + + + + + + Alt + + + + + + + + + + + + + + + + + + + + + Time (sec) + + + + + + + + + Rate (cm/sec) + + + + + + Alt + + + Dist (m) + + + + + + + + + + + + + + + + + + + + + + + + + + + WP # + Repeat# + + + + + + + + Type (0=as 1=gs) + Throttle(%) + Speed (m/s) + + + + + + + Current(1)/Spec(0) + + + + + + + + + # + Value + + + + + + + + off(0)/on(1) + Delay (s) + + + + + + + + + Repeat# + Delay (s) + + + + + + + Ser No + PWM + + + + + + + + Ser No + Repeat# + Delay (s) + PWM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tools/ArdupilotMegaPlanner/dataflashlog.xml b/Tools/ArdupilotMegaPlanner/dataflashlog.xml index 186d8d32da..6bb291dd77 100644 --- a/Tools/ArdupilotMegaPlanner/dataflashlog.xml +++ b/Tools/ArdupilotMegaPlanner/dataflashlog.xml @@ -1,133 +1,133 @@ - - - Time - Sats - Lat - Long - Mix Alt - GPSAlt - GR Speed - CRS - - - Roll - Pitch - Yaw - rc1 servo - rc2 servo - rc3 servo - - - WP Dist - Target Bear - Long Err - Lat Err - nav lon - nav lat - nav lon I - nav lat I - Loiter Lon I - Loiter Lat I - - - Yaw Sensor - Nav Yaw - Yaw Error - Sonar Alt - Baro Alt - Next WP Alt - Nav Throttle - Angle boost - Manual boost - rc3 servo out - alt hold int - thro int - - - control mode - yaw mode - r p mode - thro mode - thro cruise - thro int - - - Gyro X - Gyro Y - Gyro Z - Accel X - Accel Y - Accel Z - - - Throttle in - Throttle intergrator - Voltage - Current - Current total - - - - - - Time - Fix - Sats - Lat - Long - Mix Alt - GPSAlt - GR Speed - CRS - - - Roll - Pitch - Yaw - - - Yaw - WP dist - Target Bear - Nav Bear - Alt Err - AS - NavGScaler - - - - - Servo Roll - nav_roll - roll_sensor - Servo Pitch - nav_pitch - pitch_sensor - Servo Throttle - Servo Rudder - AN 4 - - - loop time - Main count - G_Dt_max - Gyro Sat - adc constr - renorm_sqrt - renorm_blowup - gps_fix count - imu_health - - - Gyro X - Gyro Y - Gyro Z - Accel X - Accel Y - Accel Z - - - + + + Time + Sats + Lat + Long + Mix Alt + GPSAlt + GR Speed + CRS + + + Roll + Pitch + Yaw + rc1 servo + rc2 servo + rc3 servo + + + WP Dist + Target Bear + Long Err + Lat Err + nav lon + nav lat + nav lon I + nav lat I + Loiter Lon I + Loiter Lat I + + + Yaw Sensor + Nav Yaw + Yaw Error + Sonar Alt + Baro Alt + Next WP Alt + Nav Throttle + Angle boost + Manual boost + rc3 servo out + alt hold int + thro int + + + control mode + yaw mode + r p mode + thro mode + thro cruise + thro int + + + Gyro X + Gyro Y + Gyro Z + Accel X + Accel Y + Accel Z + + + Throttle in + Throttle intergrator + Voltage + Current + Current total + + + + + + Time + Fix + Sats + Lat + Long + Mix Alt + GPSAlt + GR Speed + CRS + + + Roll + Pitch + Yaw + + + Yaw + WP dist + Target Bear + Nav Bear + Alt Err + AS + NavGScaler + + + + + Servo Roll + nav_roll + roll_sensor + Servo Pitch + nav_pitch + pitch_sensor + Servo Throttle + Servo Rudder + AN 4 + + + loop time + Main count + G_Dt_max + Gyro Sat + adc constr + renorm_sqrt + renorm_blowup + gps_fix count + imu_health + + + Gyro X + Gyro Y + Gyro Z + Accel X + Accel Y + Accel Z + + + \ No newline at end of file diff --git a/Tools/ArdupilotMegaPlanner/hires.cs b/Tools/ArdupilotMegaPlanner/hires.cs new file mode 100644 index 0000000000..b647a9c856 --- /dev/null +++ b/Tools/ArdupilotMegaPlanner/hires.cs @@ -0,0 +1,48 @@ +using System; +using System.Runtime.InteropServices; + +namespace hires +{ + public class Stopwatch + { + [DllImport("Kernel32.dll")] + private static extern bool QueryPerformanceCounter( + out long lpPerformanceCount); + + [DllImport("Kernel32.dll")] + private static extern bool QueryPerformanceFrequency( + out long lpFrequency); + + private long start=0; + private long stop=0; + + // static - so this value used in all instances of + private static double frequency = getFrequency(); + + // Note this is static- called once, before any constructor! + private static double getFrequency() + { + long tempfrequency; + QueryPerformanceFrequency(out tempfrequency); + return tempfrequency; // implicit casting to double from long + } + + public void Start() + { + QueryPerformanceCounter(out start); + } + + public void Stop() + { + QueryPerformanceCounter(out stop); + } + + public double Elapsed + { + get + { + return (double)(stop - start) / frequency; + } + } + } +} diff --git a/Tools/ArdupilotMegaPlanner/mavcmd.xml b/Tools/ArdupilotMegaPlanner/mavcmd.xml index c7a8739df7..001638d71e 100644 --- a/Tools/ArdupilotMegaPlanner/mavcmd.xml +++ b/Tools/ArdupilotMegaPlanner/mavcmd.xml @@ -1,62 +1,478 @@ - -DelayHit RadYaw AngLatLongAlt -LatLongAlt -TurnsLatLongAlt -Time sradyaw per -Alt - -Alt -MAV_ROIWP#ROI# - -Time (sec) -Rate (cm/sec)Alt -Dist (m) -DegSecDir 1=CWrel/abs - -WP #Repeat# -Type (0=as 1=gs)Throttle(%)Speed (m/s) -Current(1)/Spec(0) -#Value -off(0)/on(1)Delay (s) -Delay (s)Repeat# -Ser NoPWM -Ser NoRepeat#Delay (s)PWM - - - - - - - - -LatLongAlt -LatLongAlt -TurnsLatLongAlt -Time sLatLongAlt -LatLongAlt -LatLongAlt -AngleAlt - - -Time (sec) -Rate (cm/sec)Alt -Dist (m) - - -WP #Repeat# -Type (0=as 1=gs)Throttle(%)Speed (m/s) -Current(1)/Spec(0) -#Value -off(0)/on(1)Delay (s) -Delay (s)Repeat# -Ser NoPWM -Ser NoRepeat#Delay (s)PWM - - - - - + + + Delay + Hit Rad + + Yaw Ang + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Turns + + + + Lat + Long + Alt + + + Time s + + rad + yaw per + + + + + + + + + + + + Alt + + + + + + + + + + + + + + + + + + Alt + + + MAV_ROI + WP# + ROI# + + + + + + + + + + + + + + + + Time (sec) + + + + + + + + + Rate (cm/sec) + + + + + + Alt + + + Dist (m) + + + + + + + + + Deg + Sec + Dir 1=CW + rel/abs + + + + + + + + + + + + + + + WP # + Repeat# + + + + + + + + Type (0=as 1=gs) + Throttle(%) + Speed (m/s) + + + + + + + Current(1)/Spec(0) + + + + + + + + + # + Value + + + + + + + + off(0)/on(1) + Delay (s) + + + + + + + + + Repeat# + Delay (s) + + + + + + + Ser No + PWM + + + + + + + + Ser No + Repeat# + Delay (s) + PWM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Turns + + + + Lat + Long + Alt + + + Time s + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + + + + + Lat + Long + Alt + + + Angle + + + + + + Alt + + + + + + + + + + + + + + + + + + + + + Time (sec) + + + + + + + + + Rate (cm/sec) + + + + + + Alt + + + Dist (m) + + + + + + + + + + + + + + + + + + + + + + + + + + + WP # + Repeat# + + + + + + + + Type (0=as 1=gs) + Throttle(%) + Speed (m/s) + + + + + + + Current(1)/Spec(0) + + + + + + + + + # + Value + + + + + + + + off(0)/on(1) + Delay (s) + + + + + + + + + Repeat# + Delay (s) + + + + + + + Ser No + PWM + + + + + + + + Ser No + Repeat# + Delay (s) + PWM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tools/ArdupilotMegaPlanner/mykey.snk b/Tools/ArdupilotMegaPlanner/mykey.snk new file mode 100644 index 0000000000..fa40666d7d Binary files /dev/null and b/Tools/ArdupilotMegaPlanner/mykey.snk differ