blob: cde518cf440c857846e7df785d9e761883aeee45 [file] [log] [blame]
Austin Schuh80ff2e12014-03-08 12:06:19 -08001package frc971.actions;
2
3queue_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
22queue_group DrivetrainActionQueueGroup drivetrain_action;