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/libraries/AC_InputManager/AC_InputManager.cpp
Views: 1798
1
#include "AC_InputManager.h"
2
#include <AP_Math/AP_Math.h>
3
#include <AP_HAL/AP_HAL.h>
4
5
extern const AP_HAL::HAL& hal;
6
7
const AP_Param::GroupInfo AC_InputManager::var_info[] = {
8
9
// Placeholder for future parameters in this class.
10
11
AP_GROUPEND
12
};
13
14