| 123456789101112131415161718192021222324 |
- namespace wire_protocol;
- enum Command : short {
- ShiftLeft = 0,
- ShiftRight = 1,
- Rotate = 2,
- Land = 3,
- }
- enum CommandResponseError : short {
- OK = 0,
- UNKNOWN_COMMAND = 1,
- }
- table CommandRequest {
- command:Command;
- }
- table CommandResponse {
- error:CommandResponseError;
- }
- root_type CommandRequest;
- root_type CommandResponse;
|