Austin Schuh | 80ff2e1 | 2014-03-08 12:06:19 -0800 | [diff] [blame] | 1 | package frc971.actions; |
| 2 | |
| 3 | queue_group DrivetrainActionQueueGroup { |
| 4 | message Status { |
| 5 | bool running; |
| 6 | }; |
| 7 | |
| 8 | message Goal { |
| 9 | // If true, run this action. If false, cancel the action if it is |
| 10 | // currently running. |
| 11 | bool run; |
| 12 | double left_initial_position; |
| 13 | double right_initial_position; |
| 14 | double y_offset; |
| 15 | double maximum_velocity; |
| 16 | }; |
| 17 | |
| 18 | queue Goal goal; |
| 19 | queue Status status; |
| 20 | }; |
| 21 | |
| 22 | queue_group DrivetrainActionQueueGroup drivetrain_action; |