You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
998 B
39 lines
998 B
6 years ago
|
#include "Tracker.h"
|
||
|
|
||
|
/*
|
||
|
* GCS controlled servo test mode
|
||
|
*/
|
||
|
|
||
|
/*
|
||
5 years ago
|
* set_servo - sets the yaw or pitch servo pwm directly
|
||
6 years ago
|
* servo_num are 1 for yaw, 2 for pitch
|
||
|
*/
|
||
5 years ago
|
bool ModeServoTest::set_servo(uint8_t servo_num, uint16_t pwm)
|
||
6 years ago
|
{
|
||
|
// convert servo_num from 1~2 to 0~1 range
|
||
|
servo_num--;
|
||
|
|
||
|
// exit immediately if servo_num is invalid
|
||
|
if (servo_num != CH_YAW && servo_num != CH_PITCH) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
// set yaw servo pwm and send output to servo
|
||
|
if (servo_num == CH_YAW) {
|
||
|
SRV_Channels::set_output_pwm(SRV_Channel::k_tracker_yaw, pwm);
|
||
|
SRV_Channels::constrain_pwm(SRV_Channel::k_tracker_yaw);
|
||
|
}
|
||
|
|
||
|
// set pitch servo pwm and send output to servo
|
||
|
if (servo_num == CH_PITCH) {
|
||
|
SRV_Channels::set_output_pwm(SRV_Channel::k_tracker_pitch, pwm);
|
||
|
SRV_Channels::constrain_pwm(SRV_Channel::k_tracker_pitch);
|
||
|
}
|
||
|
|
||
|
SRV_Channels::calc_pwm();
|
||
|
SRV_Channels::output_ch_all();
|
||
|
|
||
|
// return success
|
||
|
return true;
|
||
|
}
|