Added Packet3 for Lap completion

This commit is contained in:
2026-05-17 14:40:55 +02:00
parent a298a0c7ec
commit c120744e8e
2 changed files with 30 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
// Copyright (C) 2026 Association Exergie <association.exergie@gmail.com>
// SPDX-License-Identifier: MIT
#pragma once
#include <cstdint>
#include <inttypes.h>
#pragma pack(push, 1)
@@ -21,6 +22,14 @@ struct TelemetryPacket2 {
};
#pragma pack(pop)
#pragma pack(push, 1)
struct TelemetryPacket3 {
uint32_t start_time_;
uint32_t duration_;
uint16_t count_;
};
#pragma pack(pop)
#pragma pack(push, 1)
struct TelemetryLoRaHeader {
uint8_t source_;