Browse Source

ArduCopter: small bug fix to radio.pde to allow code to compile when MOUNT == DISABLED

mission-4.1.18
rmackay9 13 years ago
parent
commit
33d8cbfd51
  1. 3
      ArduCopter/radio.pde

3
ArduCopter/radio.pde

@ -42,7 +42,10 @@ static void init_rc_in() @@ -42,7 +42,10 @@ static void init_rc_in()
g.rc_6.set_range(0,1000);
g.rc_7.set_range(0,1000);
g.rc_8.set_range(0,1000);
#if MOUNT == ENABLED
update_aux_servo_function(&g.rc_camera_roll, &g.rc_camera_pitch, &g.rc_camera_yaw);
#endif
}
static void init_rc_out()

Loading…
Cancel
Save