mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
13 lines
200 B
C++
13 lines
200 B
C++
#include "mode.h"
|
|
|
|
#include "Tracker.h"
|
|
|
|
void ModeAuto::update()
|
|
{
|
|
if (tracker.vehicle.location_valid) {
|
|
update_auto();
|
|
} else if (tracker.target_set) {
|
|
update_scan();
|
|
}
|
|
}
|