Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/AntennaTracker/radio.cpp
9465 views
1
#include "Tracker.h"
2
3
// Functions to read the RC radio input
4
5
void Tracker::read_radio()
6
{
7
rc().read_input();
8
}
9
10