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/Blimp/version.h
Views: 1798
1
#pragma once
2
3
#ifndef FORCE_VERSION_H_INCLUDE
4
#error version.h should never be included directly. You probably want to include AP_Common/AP_FWVersion.h
5
#endif
6
7
#include "ap_version.h"
8
9
#define THISFIRMWARE "Blimp V4.7.0-dev"
10
11
// the following line is parsed by the autotest scripts
12
#define FIRMWARE_VERSION 4,7,0,FIRMWARE_VERSION_TYPE_DEV
13
14
#define FW_MAJOR 4
15
#define FW_MINOR 7
16
#define FW_PATCH 0
17
#define FW_TYPE FIRMWARE_VERSION_TYPE_DEV
18
19
#include <AP_Common/AP_FWVersionDefine.h>
20
#include <AP_CheckFirmware/AP_CheckFirmwareDefine.h>
21
22