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>
15 lines
328 B
C
15 lines
328 B
C
/** @file
|
|
* @brief MAVLink comm protocol built from minimal.xml
|
|
* @see http://mavlink.org
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef MAVLINK_VERSION_H
|
|
#define MAVLINK_VERSION_H
|
|
|
|
#define MAVLINK_BUILD_DATE "Wed Jun 17 2026"
|
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "2.0"
|
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 9
|
|
|
|
#endif // MAVLINK_VERSION_H
|