mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
11 lines
176 B
C++
11 lines
176 B
C++
#include "Tracker.h"
|
|
|
|
// Functions to read the RC radio input
|
|
|
|
void Tracker::read_radio()
|
|
{
|
|
if (RC_Channels::has_new_input()) {
|
|
RC_Channels::set_pwm_all();
|
|
}
|
|
}
|