From 5f5c20062575c5553b3bc763b813646989862868 Mon Sep 17 00:00:00 2001 From: mirkix Date: Fri, 22 Jul 2016 15:57:30 +0200 Subject: [PATCH] ArduPlane: Fix filename in header --- ArduPlane/system.cpp | 3 ++- ArduPlane/test.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ArduPlane/system.cpp b/ArduPlane/system.cpp index b8dfd08b72..d32487b075 100644 --- a/ArduPlane/system.cpp +++ b/ArduPlane/system.cpp @@ -586,7 +586,8 @@ void Plane::check_short_failsafe() flight_stage != AP_SpdHgtControl::FLIGHT_LAND_FINAL && flight_stage != AP_SpdHgtControl::FLIGHT_LAND_PREFLARE && flight_stage != AP_SpdHgtControl::FLIGHT_LAND_APPROACH) { - if(failsafe.ch3_failsafe) { // The condition is checked and the flag ch3_failsafe is set in radio.pde + // The condition is checked and the flag ch3_failsafe is set in radio.cpp + if(failsafe.ch3_failsafe) { failsafe_short_on_event(FAILSAFE_SHORT); } } diff --git a/ArduPlane/test.cpp b/ArduPlane/test.cpp index 84deb30f96..0886f71e9e 100644 --- a/ArduPlane/test.cpp +++ b/ArduPlane/test.cpp @@ -55,7 +55,7 @@ int8_t Plane::test_radio_pwm(uint8_t argc, const Menu::arg *argv) while(1) { hal.scheduler->delay(20); - // Filters radio input - adjust filters in the radio.pde file + // Filters radio input - adjust filters in the radio.cpp file // ---------------------------------------------------------- read_radio();