Work on sensor

This commit is contained in:
2026-01-08 15:46:39 -05:00
parent 857057b1a8
commit 827a098bdc
14 changed files with 165 additions and 67 deletions

View File

@@ -5,10 +5,12 @@
#ifndef SERIALIZEDMESSAGE_H
#define SERIALIZEDMESSAGE_H
#include <cstdint>
namespace Flatbuffers {
struct SerializedMessage {
void* data;
size_t size;
std::size_t size;
};
}