mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 01:48:29 -04:00
15 lines
285 B
C
15 lines
285 B
C
|
#pragma once
|
||
|
|
||
|
#include "ap_version.h" // header generated by build system
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <GCS_MAVLink/GCS_MAVLink.h>
|
||
|
|
||
|
typedef struct {
|
||
|
uint8_t major;
|
||
|
uint8_t minor;
|
||
|
uint8_t patch;
|
||
|
FIRMWARE_VERSION_TYPE fw_type;
|
||
|
const char *fw_string;
|
||
|
} AP_FWVersion;
|