diff --git a/ArduPlane/ArduPlane.pde b/ArduPlane/ArduPlane.pde index 2b744873a2..45b95b69ee 100644 --- a/ArduPlane/ArduPlane.pde +++ b/ArduPlane/ArduPlane.pde @@ -730,6 +730,9 @@ static void slow_loop() update_aux_servo_function(); +#if CAMERA == ENABLED + camera_mount.update_mount_type(); +#endif break; case 2: diff --git a/ArduPlane/radio.pde b/ArduPlane/radio.pde index f38d57cf1f..11513fba41 100644 --- a/ArduPlane/radio.pde +++ b/ArduPlane/radio.pde @@ -267,8 +267,4 @@ static void update_aux_servo_function() g_rc_function[aux_servo_function[CH_6]] = &g.rc_6; g_rc_function[aux_servo_function[CH_7]] = &g.rc_7; g_rc_function[aux_servo_function[CH_8]] = &g.rc_8; - -#if CAMERA == ENABLED - camera_mount.update_mount_type(); -#endif }