blob: 8456bfaa546ce939ebbea00a052dc0ff3375ba1b [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace aos.control_loops;
2// This file defines basic messages for a Single Input Single Output (SISO)
3// control loop.
4
5table Goal {
6 goal:double;
7}
8
9table Position {
10 position:double;
11}
12
13table Output {
14 voltage:double;
15}
16
17table Status {
18 done:bool;
19}
20
21root_type Goal;
22root_type Position;
23root_type Output;
24root_type Status;