blob: 903b397e77e5197e488352a78f0e3168ec85738e [file] [log] [blame]
Austin Schuh075a5072017-10-21 18:05:25 -07001py_binary(
Brian Silverman36d06492018-05-12 11:52:35 -07002 name = "big_phase_current",
Austin Schuh075a5072017-10-21 18:05:25 -07003 srcs = [
Brian Silverman36d06492018-05-12 11:52:35 -07004 "big_phase_current.py",
Austin Schuh075a5072017-10-21 18:05:25 -07005 ],
Brian Silverman6470f442018-08-05 12:08:16 -07006 legacy_create_init = False,
Brian Silvermandabdf902017-10-21 15:34:40 -04007 restricted_to = ["//tools:k8"],
Austin Schuh075a5072017-10-21 18:05:25 -07008 deps = [
Brian Silverman6470f442018-08-05 12:08:16 -07009 ":python_init",
Austin Schuh075a5072017-10-21 18:05:25 -070010 "//external:python-gflags",
11 "//external:python-glog",
12 "//frc971/control_loops/python:controls",
13 ],
Austin Schuh075a5072017-10-21 18:05:25 -070014)
Brian Silverman6260c092018-01-14 15:21:36 -080015
16py_binary(
17 name = "haptic_phase_current",
18 srcs = [
19 "haptic_phase_current.py",
20 ],
Brian Silverman6470f442018-08-05 12:08:16 -070021 legacy_create_init = False,
Brian Silvermandabdf902017-10-21 15:34:40 -040022 restricted_to = ["//tools:k8"],
Brian Silverman6260c092018-01-14 15:21:36 -080023 deps = [
Brian Silverman6470f442018-08-05 12:08:16 -070024 ":python_init",
Brian Silverman6260c092018-01-14 15:21:36 -080025 "//external:python-gflags",
26 "//external:python-glog",
27 "//frc971/control_loops/python:controls",
28 ],
Brian Silverman6260c092018-01-14 15:21:36 -080029)
Brian Silverman6470f442018-08-05 12:08:16 -070030
31py_library(
32 name = "python_init",
33 srcs = ["__init__.py"],
34 visibility = ["//visibility:public"],
35 deps = ["//motors:python_init"],
36)