CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/AntennaTracker/radio.cpp
Views: 1798
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