OTA + remote logging + profiling

This commit is contained in:
2026-02-18 11:12:38 -05:00
parent 63a18677cb
commit 107f185527
16 changed files with 524 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
#ifndef OTAPACKETUILDER_H
#define OTAPACKETBUILDER_H
#include <vector>
#include "flatbuffers/flatbuffers.h"
#include "flatbuffers_generated/OTAPacket_generated.h"
namespace Flatbuffers {
class OTAPacketBuilder{
public:
OTAPacketBuilder() {}
static const Messaging::OTAPacket *parse_ota_packet(const uint8_t *buffer);
};
} // namespace Flatbuffers
#endif // OTAPACKETBUILDER_H