mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
11 lines
169 B
C++
11 lines
169 B
C++
#include "Tracker.h"
|
|
|
|
// Functions to read the RC radio input
|
|
|
|
void Tracker::read_radio()
|
|
{
|
|
if (hal.rcin->new_input()) {
|
|
RC_Channels::set_pwm_all();
|
|
}
|
|
}
|