mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-06 07:58:28 -04:00
18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
/*
|
|
* control_manual.pde - manual control mode
|
|
*/
|
|
|
|
/*
|
|
* update_manual - runs the manual controller
|
|
* called at 50hz while control_mode is 'MANUAL'
|
|
*/
|
|
static void update_manual(void)
|
|
{
|
|
channel_yaw.radio_out = channel_yaw.radio_in;
|
|
channel_pitch.radio_out = channel_pitch.radio_in;
|
|
channel_yaw.output();
|
|
channel_pitch.output();
|
|
}
|