Code for the motor controller
This is basically what we used in Detroit.
Change-Id: If2820d7ec5fcbc5f33b4082025027a6e969ad0e1
diff --git a/third_party/eigen/BUILD b/third_party/eigen/BUILD
index 3f4fc4c..4a33fd9 100644
--- a/third_party/eigen/BUILD
+++ b/third_party/eigen/BUILD
@@ -1,5 +1,7 @@
licenses(['notice'])
+load("//tools:environments.bzl", "mcu_cpus")
+
cc_library(
name = 'eigen',
visibility = ['//visibility:public'],
@@ -16,4 +18,5 @@
'Eigen/UmfPackSupport',
]) + ['unsupported/Eigen/MatrixFunctions'] +
glob(['unsupported/Eigen/src/MatrixFunctions/*.h']),
+ compatible_with = mcu_cpus,
)