mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-03 12:14:10 -04:00
Rover: Rally no longer takes ahrs in constructor
This commit is contained in:
parent
2039fadfb7
commit
101ce74071
@ -20,7 +20,7 @@
|
|||||||
class AP_Rally_Rover : public AP_Rally
|
class AP_Rally_Rover : public AP_Rally
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AP_Rally_Rover(AP_AHRS &ahrs) : AP_Rally(ahrs) { }
|
AP_Rally_Rover() : AP_Rally() { }
|
||||||
|
|
||||||
/* Do not allow copies */
|
/* Do not allow copies */
|
||||||
AP_Rally_Rover(const AP_Rally_Rover &other) = delete;
|
AP_Rally_Rover(const AP_Rally_Rover &other) = delete;
|
||||||
|
@ -733,7 +733,6 @@ ParametersG2::ParametersG2(void)
|
|||||||
proximity(rover.serial_manager),
|
proximity(rover.serial_manager),
|
||||||
avoid(rover.ahrs, fence, rover.g2.proximity, &rover.g2.beacon),
|
avoid(rover.ahrs, fence, rover.g2.proximity, &rover.g2.beacon),
|
||||||
follow(),
|
follow(),
|
||||||
rally(rover.ahrs),
|
|
||||||
windvane(),
|
windvane(),
|
||||||
airspeed()
|
airspeed()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user