updated most things to work on Wheezy
I haven't done the new opencv packages yet, so I just didn't test
compiling that stuff.
Almost all of the changes were related to user-defined string literals
breaking things like "%"PRIu32" (in our code and other people's).
diff --git a/aos/common/input/driver_station_data.cc b/aos/common/input/driver_station_data.cc
index 803d46a..6b078d4 100644
--- a/aos/common/input/driver_station_data.cc
+++ b/aos/common/input/driver_station_data.cc
@@ -30,6 +30,8 @@
return values.control.autonomous();
case ControlBit::kEnabled:
return values.control.enabled();
+ default:
+ __builtin_unreachable();
}
}