Browse Source

Plane: removed unused function

master
Andrew Tridgell 10 years ago
parent
commit
538cf68005
  1. 5
      ArduPlane/compat.pde
  2. 2
      ArduPlane/system.pde

5
ArduPlane/compat.pde

@ -1,9 +1,4 @@ @@ -1,9 +1,4 @@
static void delay(uint32_t ms)
{
hal.scheduler->delay(ms);
}
static void mavlink_delay(uint32_t ms)
{
hal.scheduler->delay(ms);

2
ArduPlane/system.pde

@ -500,7 +500,7 @@ static void startup_INS_ground(bool do_accel_init) @@ -500,7 +500,7 @@ static void startup_INS_ground(bool do_accel_init)
// the barometer begins updating when we get the first
// HIL_STATE message
gcs_send_text_P(SEVERITY_LOW, PSTR("Waiting for first HIL_STATE message"));
delay(1000);
hal.scheduler->delay(1000);
}
// set INS to HIL mode

Loading…
Cancel
Save