Up priorities of some of threads.

Specifically:
-Set RT priorities on the 2020 wpilib_interface threads.
-Set RT priorities on some of the threads spawned by the HAL in
 wpilib_interface.
-Catch both spi0 and spi1 in the ADIS16470 driver, although I'm guessing
 that only spi0 really matters.

 Also, make the ShmEventLoop name propagate through to the thread name
 so that we have sane thread names on more things.

Change-Id: I4d986ba2eb19d90a0a56b40e0ec9766300a95076
diff --git a/y2020/wpilib_interface.cc b/y2020/wpilib_interface.cc
index a363775..4989390 100644
--- a/y2020/wpilib_interface.cc
+++ b/y2020/wpilib_interface.cc
@@ -10,7 +10,6 @@
 #include <mutex>
 #include <thread>
 
-#include "ctre/phoenix/CANifier.h"
 #include "frc971/wpilib/ahal/AnalogInput.h"
 #include "frc971/wpilib/ahal/Counter.h"
 #include "frc971/wpilib/ahal/DigitalGlitchFilter.h"
@@ -31,7 +30,6 @@
 #include "aos/util/log_interval.h"
 #include "aos/util/phased_loop.h"
 #include "aos/util/wrapping_counter.h"
-#include "ctre/phoenix/motorcontrol/can/TalonSRX.h"
 #include "frc971/autonomous/auto_mode_generated.h"
 #include "frc971/control_loops/drivetrain/drivetrain_position_generated.h"
 #include "frc971/wpilib/ADIS16470.h"
@@ -241,6 +239,7 @@
 
     // Thread 4.
     ::aos::ShmEventLoop output_event_loop(&config.message());
+    output_event_loop.set_name("output_writer");
     ::frc971::wpilib::DrivetrainWriter drivetrain_writer(&output_event_loop);
     drivetrain_writer.set_left_controller0(
         ::std::unique_ptr<::frc::VictorSP>(new ::frc::VictorSP(0)), true);