added analog sensors and cleaned up the sensor data structure a bit
diff --git a/gyro_board/src/usb/CAN.c b/gyro_board/src/usb/CAN.c
index 591c6fc..35f811f 100644
--- a/gyro_board/src/usb/CAN.c
+++ b/gyro_board/src/usb/CAN.c
@@ -231,6 +231,10 @@
     vTaskDelete(NULL);
   }
 
+  // Set all of the CAN stuff to run at CCLK/6, which translates to about 1 Mbit
+  // (1.042).
+  SC->PCLKSEL0 |= 3 << 26 | 3 << 28 | 3 << 30;
+
   // Enable CAN
   SC->PCONP |= PCONP_PCCAN1;