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,42 @@
namespace Messaging;
table TargetAngle {
value: int16;
}
table CurrentText {
value: string;
}
table CurrentAngle {
value: int16;
}
table Distance {
value: float;
}
table Temperature {
value: float;
}
table Position {
heading: float;
pitch: float;
roll: float;
}
union SensorValue {
TargetAngle,
CurrentAngle,
CurrentText,
Distance,
Temperature,
Position
}
table SensorMessage {
values: [SensorValue];
}
root_type SensorMessage;