blob: 3561a18a64ad1d4a765a6acfe2dcc706421ef2a9 [file] [log] [blame]
include "frc971/control_loops/control_loops.fbs";
namespace frc971.control_loops.drivetrain;
table SplineGoal {
// index of the spline.
spline_idx:int (id: 0);
// Acutal spline.
spline:frc971.MultiSpline (id: 1);
// Whether to follow the spline driving forwards or backwards.
drive_spline_backwards:bool (id: 2);
}
root_type SplineGoal;