finished getting all of the usb stuff working nicely(ish)
diff --git a/frc971/input/gyro_board_data.h b/frc971/input/gyro_board_data.h
index 0a8272a..a1b8712 100644
--- a/frc971/input/gyro_board_data.h
+++ b/frc971/input/gyro_board_data.h
@@ -46,6 +46,8 @@
   };
 
   void NetworkToHost() {
+    // Apparently it sends the information out in little endian.
+#if 0
     using ::aos::ntoh;
 
     gyro_angle = ntoh(gyro_angle);
@@ -64,6 +66,7 @@
     capture_shooter_angle_rise = ntoh(capture_shooter_angle_rise);
 
     digitals = ntoh(digitals);
+#endif
   }
 } __attribute__((__packed__));