Add piping to SZSDPS for non-profiled goals

Change-Id: I5adeadf4f7dfc3455433e13e27635dcb479128e6
diff --git a/frc971/control_loops/profiled_subsystem.fbs b/frc971/control_loops/profiled_subsystem.fbs
index e4b2f25..185133b 100644
--- a/frc971/control_loops/profiled_subsystem.fbs
+++ b/frc971/control_loops/profiled_subsystem.fbs
@@ -237,4 +237,11 @@
   unsafe_goal:double;
 
   profile_params:frc971.ProfileParameters;
+
+  // Sets the goal velocity of the subsystem.
+  goal_velocity:double;
+
+  // If set to true, then we will ignore the profiling on this joint and pass
+  // the goal + goal velocity directly to the control loop.
+  ignore_profile:bool;
 }