mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-06 07:58:28 -04:00
22 lines
612 B
Plaintext
22 lines
612 B
Plaintext
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
/*
|
|
* control_auto.pde - auto control mode
|
|
*/
|
|
|
|
/*
|
|
* update_auto - runs the auto controller
|
|
* called at 50hz while control_mode is 'AUTO'
|
|
*/
|
|
static void update_auto(void)
|
|
{
|
|
if (g.startup_delay > 0 &&
|
|
hal.scheduler->millis() - start_time_ms < g.startup_delay*1000) {
|
|
return;
|
|
}
|
|
float yaw = wrap_180_cd((nav_status.bearing+g.yaw_trim)*100) * 0.01f;
|
|
float pitch = constrain_float(nav_status.pitch+g.pitch_trim, -90, 90);
|
|
update_pitch_servo(pitch);
|
|
update_yaw_servo(yaw);
|
|
}
|