Changed control loop cycle to 5.05 ms

Change-Id: If2a1e1ab01e051798fdaff77914a418ab2136f2c
diff --git a/y2017/control_loops/superstructure/shooter/shooter.cc b/y2017/control_loops/superstructure/shooter/shooter.cc
index c0b9d6e..f864696 100644
--- a/y2017/control_loops/superstructure/shooter/shooter.cc
+++ b/y2017/control_loops/superstructure/shooter/shooter.cc
@@ -102,7 +102,7 @@
   position_error_ = X_hat_current_(0, 0) - Y_(0, 0);
   dt_velocity_ = dt_position_ /
                  chrono::duration_cast<chrono::duration<double>>(dt).count();
-  fixed_dt_velocity_ = dt_position_ / 0.005;
+  fixed_dt_velocity_ = dt_position_ / 0.00505;
 
   loop_->Update(disabled, dt);
 }