Stato di partenza prima dei fix. Il repo git era inizializzato a meta' (config.lock + objects/ mancante, zero commit): riparato. my_config.h (UID reale, tutti e 3 i sottoprogetti) escluso via .gitignore; aggiunto my_config.h.example. .pio/ escluso. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
600 B
C
35 lines
600 B
C
/** @file
|
|
* @brief MAVLink comm protocol built from standard.xml
|
|
* @see http://mavlink.org
|
|
*/
|
|
#pragma once
|
|
#ifndef MAVLINK_H
|
|
#define MAVLINK_H
|
|
|
|
#define MAVLINK_PRIMARY_XML_HASH -4334145906794048255
|
|
|
|
#ifndef MAVLINK_STX
|
|
#define MAVLINK_STX 253
|
|
#endif
|
|
|
|
#ifndef MAVLINK_ENDIAN
|
|
#define MAVLINK_ENDIAN MAVLINK_LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#ifndef MAVLINK_ALIGNED_FIELDS
|
|
#define MAVLINK_ALIGNED_FIELDS 1
|
|
#endif
|
|
|
|
#ifndef MAVLINK_CRC_EXTRA
|
|
#define MAVLINK_CRC_EXTRA 1
|
|
#endif
|
|
|
|
#ifndef MAVLINK_COMMAND_24BIT
|
|
#define MAVLINK_COMMAND_24BIT 1
|
|
#endif
|
|
|
|
#include "version.h"
|
|
#include "standard.h"
|
|
|
|
#endif // MAVLINK_H
|