Cleanup for release

This commit is contained in:
2026-03-28 23:10:58 -04:00
parent 40093c8534
commit 0056e7a9de
14 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
namespace Messaging;
enum EntryType : byte {
NONE = 0,
I32,
U32,
I64,
U64,
STRING,
BLOB
}
table I32Value { value: int32; }
table U32Value { value: uint32; }
table I64Value { value: int64; }
table U64Value { value: uint64; }
table StringValue { value: string; }
table BlobValue { value: [ubyte]; }
union NvsValue {
I32Value,
U32Value,
I64Value,
U64Value,
StringValue,
BlobValue
}
table ConfigMessage {
key: string;
type: EntryType;
value: NvsValue;
}
root_type ConfigMessage;