mirror of https://github.com/ArduPilot/ardupilot
APM Planner - gps lat long bug fix.
This commit is contained in:
parent
3bb3cbe5b6
commit
06a1035953
|
@ -683,8 +683,8 @@ namespace ArdupilotMega
|
|||
}
|
||||
|
||||
|
||||
byte[] bytes = mavinterface.packets[MAVLink.MAVLINK_MSG_ID_GLOBAL_POSITION_INT];
|
||||
if (bytes != null)
|
||||
bytearray = mavinterface.packets[MAVLink.MAVLINK_MSG_ID_GLOBAL_POSITION_INT];
|
||||
if (bytearray != null)
|
||||
{
|
||||
var loc = bytearray.ByteArrayToStructure<MAVLink.__mavlink_global_position_int_t>(6);
|
||||
|
||||
|
|
|
@ -534,8 +534,12 @@ namespace ArdupilotMega.GCSViews
|
|||
private void updateBindingSource()
|
||||
{
|
||||
this.BeginInvoke((System.Windows.Forms.MethodInvoker)delegate()
|
||||
{
|
||||
try
|
||||
{
|
||||
MainV2.cs.UpdateCurrentSettings(bindingSource1);
|
||||
}
|
||||
catch { }
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -145,8 +145,11 @@ namespace ArdupilotMega
|
|||
return;
|
||||
|
||||
//Console.WriteLine(DateTime.Now.Millisecond + " timer2 serial");
|
||||
|
||||
try
|
||||
{
|
||||
MainV2.cs.UpdateCurrentSettings(currentStateBindingSource);
|
||||
}
|
||||
catch { }
|
||||
|
||||
if (sw != null && sw.BaseStream.CanWrite)
|
||||
{
|
||||
|
|
|
@ -47,8 +47,12 @@ namespace ArdupilotMega.Setup
|
|||
}
|
||||
|
||||
void timer_Tick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
MainV2.cs.UpdateCurrentSettings(currentStateBindingSource);
|
||||
}
|
||||
catch { }
|
||||
|
||||
float pwm = 0;
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue