Browse Source

Copter: rename landing_gear.pde

master
Randy Mackay 10 years ago
parent
commit
5f3c2bcd11
  1. 3
      ArduCopter/landing_gear.pde

3
ArduCopter/LandingGear.pde → ArduCopter/landing_gear.pde

@ -19,7 +19,7 @@ static void landinggear_update(){ @@ -19,7 +19,7 @@ static void landinggear_update(){
// send event message to datalog if status has changed
if (landinggear.deployed() != last_deploy_status){
if (landinggear.deployed()){
if (landinggear.deployed()) {
Log_Write_Event(DATA_LANDING_GEAR_DEPLOYED);
} else {
Log_Write_Event(DATA_LANDING_GEAR_RETRACTED);
@ -29,4 +29,3 @@ static void landinggear_update(){ @@ -29,4 +29,3 @@ static void landinggear_update(){
last_deploy_status = landinggear.deployed();
}
}
Loading…
Cancel
Save