mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
37cf09a8f9
This adds a bitmask that can be used to allow scaning before a vehicle has been found in auto mode
13 lines
247 B
C++
13 lines
247 B
C++
#include "mode.h"
|
|
|
|
#include "Tracker.h"
|
|
|
|
void ModeAuto::update()
|
|
{
|
|
if (tracker.vehicle.location_valid) {
|
|
update_auto();
|
|
} else if (tracker.target_set || (tracker.g.auto_opts.get() & (1 << 0)) != 0) {
|
|
update_scan();
|
|
}
|
|
}
|