2017-08-18 19:42:25 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#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;
|
2017-09-05 02:56:19 -03:00
|
|
|
const char *fw_hash_str;
|
|
|
|
const char *middleware_hash_str;
|
|
|
|
const char *os_hash_str;
|
2017-08-18 19:42:25 -03:00
|
|
|
} AP_FWVersion;
|