Added a hybrid KF for the shooter.

Change-Id: If3ba2e6978773aef2e63c9bfeb0cc6e2dec483d5
diff --git a/frc971/control_loops/drivetrain/drivetrain.cc b/frc971/control_loops/drivetrain/drivetrain.cc
index 2e680a3..aa6cd60 100644
--- a/frc971/control_loops/drivetrain/drivetrain.cc
+++ b/frc971/control_loops/drivetrain/drivetrain.cc
@@ -151,7 +151,7 @@
         rate, angle, down_estimator_.X_hat(0, 0), down_estimator_.X_hat(1, 0));
     down_U_(0, 0) = rate;
   }
-  down_estimator_.UpdateObserver(down_U_);
+  down_estimator_.UpdateObserver(down_U_, ::aos::controls::kLoopFrequency);
 
   // TODO(austin): Signal the current gear to both loops.
 
@@ -292,7 +292,7 @@
   last_left_voltage_ = left_voltage;
   last_right_voltage_ = right_voltage;
 
-  kf_.UpdateObserver(U);
+  kf_.UpdateObserver(U, ::aos::controls::kLoopFrequency);
 }
 
 void DrivetrainLoop::Zero(