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/AP_Common/AP_FWVersion.cpp
Views: 1798
1
#include "AP_FWVersion.h"
2
3
namespace AP {
4
5
const AP_FWVersion &fwversion()
6
{
7
return AP_FWVersion::get_fwverz();
8
}
9
10
}
11
12