mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
Fix RC range reversal
This commit is contained in:
parent
46185ee5d8
commit
2fa92aea4c
@ -1,6 +1,6 @@
|
|||||||
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||||||
|
|
||||||
#define THISFIRMWARE "ArduPilotMega V2.23"
|
#define THISFIRMWARE "ArduPilotMega V2.24"
|
||||||
/*
|
/*
|
||||||
Authors: Doug Weibel, Jose Julio, Jordi Munoz, Jason Short
|
Authors: Doug Weibel, Jose Julio, Jordi Munoz, Jason Short
|
||||||
Thanks to: Chris Anderson, HappyKillMore, Bill Premerlani, James Cohen, JB from rotorFX, Automatik, Fefenin, Peter Meister, Remzibi
|
Thanks to: Chris Anderson, HappyKillMore, Bill Premerlani, James Cohen, JB from rotorFX, Automatik, Fefenin, Peter Meister, Remzibi
|
||||||
@ -581,7 +581,7 @@ static void medium_loop()
|
|||||||
|
|
||||||
// For now point the camera manually via the RC inputs (later remove these two lines)
|
// For now point the camera manually via the RC inputs (later remove these two lines)
|
||||||
// for simple dcm tests, replace k_manual with k_stabilise
|
// for simple dcm tests, replace k_manual with k_stabilise
|
||||||
camera_mount.set_mode(AP_Mount::k_manual);
|
camera_mount.set_mode(AP_Mount::k_stabilise);
|
||||||
camera_mount.update_mount();
|
camera_mount.update_mount();
|
||||||
|
|
||||||
g.camera.trigger_pic_cleanup();
|
g.camera.trigger_pic_cleanup();
|
||||||
|
@ -17,7 +17,7 @@ public:
|
|||||||
// The increment will prevent old parameters from being used incorrectly
|
// The increment will prevent old parameters from being used incorrectly
|
||||||
// by newer code.
|
// by newer code.
|
||||||
//
|
//
|
||||||
static const uint16_t k_format_version = 11;
|
static const uint16_t k_format_version = 12;
|
||||||
|
|
||||||
// The parameter software_type is set up solely for ground station use
|
// The parameter software_type is set up solely for ground station use
|
||||||
// and identifies the software type (eg ArduPilotMega versus ArduCopterMega)
|
// and identifies the software type (eg ArduPilotMega versus ArduCopterMega)
|
||||||
|
Loading…
Reference in New Issue
Block a user