Add roll AngularSystem code gen to 2023
Controller hasn't been tuned, FYI.
Change-Id: I0e5ddb594552a020b58060c4edea96ff675bf677
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/y2023/control_loops/python/BUILD b/y2023/control_loops/python/BUILD
index 7825675..f94772d 100644
--- a/y2023/control_loops/python/BUILD
+++ b/y2023/control_loops/python/BUILD
@@ -90,3 +90,19 @@
visibility = ["//visibility:public"],
deps = ["//y2023/control_loops:python_init"],
)
+
+py_binary(
+ name = "roll",
+ srcs = [
+ "roll.py",
+ ],
+ legacy_create_init = False,
+ target_compatible_with = ["@platforms//cpu:x86_64"],
+ deps = [
+ ":python_init",
+ "//frc971/control_loops/python:angular_system",
+ "//frc971/control_loops/python:controls",
+ "@pip//glog",
+ "@pip//python_gflags",
+ ],
+)