mirror of https://github.com/ArduPilot/ardupilot
GCS_MAVLink: regenerate common
This commit is contained in:
parent
ce2f568959
commit
eafc75fa7b
|
@ -97,6 +97,20 @@ typedef enum MAV_TYPE
|
|||
} MAV_TYPE;
|
||||
#endif
|
||||
|
||||
/** @brief These values define the type of firmware release. These values indicate the first version or release of this type. For example the first alpha release would be 64, the second would be 65. */
|
||||
#ifndef HAVE_ENUM_FIRMWARE_VERSION_TYPE
|
||||
#define HAVE_ENUM_FIRMWARE_VERSION_TYPE
|
||||
typedef enum FIRMWARE_VERSION_TYPE
|
||||
{
|
||||
FIRMWARE_VERSION_TYPE_DEV=0, /* development release | */
|
||||
FIRMWARE_VERSION_TYPE_ALPHA=64, /* alpha release | */
|
||||
FIRMWARE_VERSION_TYPE_BETA=128, /* beta release | */
|
||||
FIRMWARE_VERSION_TYPE_RC=192, /* release candidate | */
|
||||
FIRMWARE_VERSION_TYPE_OFFICIAL=255, /* official stable release | */
|
||||
FIRMWARE_VERSION_TYPE_ENUM_END=256, /* | */
|
||||
} FIRMWARE_VERSION_TYPE;
|
||||
#endif
|
||||
|
||||
/** @brief These flags encode the MAV mode. */
|
||||
#ifndef HAVE_ENUM_MAV_MODE_FLAG
|
||||
#define HAVE_ENUM_MAV_MODE_FLAG
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#ifndef MAVLINK_VERSION_H
|
||||
#define MAVLINK_VERSION_H
|
||||
|
||||
#define MAVLINK_BUILD_DATE "Mon Aug 17 17:04:29 2015"
|
||||
#define MAVLINK_BUILD_DATE "Wed Aug 19 13:34:55 2015"
|
||||
#define MAVLINK_WIRE_PROTOCOL_VERSION "1.0"
|
||||
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 255
|
||||
|
||||
|
|
Loading…
Reference in New Issue