blob: b9987a4dfa58819782674fd99290ac089ef654dc [file] [log] [blame]
Austin Schuhbcce26a2018-03-26 23:41:24 -07001package(default_visibility = ["//visibility:public"])
2
3load("//tools:environments.bzl", "mcu_cpus")
Austin Schuh044e18b2015-10-21 20:17:09 -07004
5cc_library(
Austin Schuhbcce26a2018-03-26 23:41:24 -07006 name = "shifter_hall_effect",
7 hdrs = [
8 "shifter_hall_effect.h",
9 ],
Brian Silverman7a7c24d2018-09-01 17:49:09 -070010 compatible_with = mcu_cpus + [
11 "//tools:armhf-debian",
12 ],
Austin Schuh044e18b2015-10-21 20:17:09 -070013)
14
15cc_library(
Austin Schuhbcce26a2018-03-26 23:41:24 -070016 name = "constants",
17 hdrs = [
18 "constants.h",
19 ],
Brian Silverman7a7c24d2018-09-01 17:49:09 -070020 compatible_with = [
21 "//tools:armhf-debian",
22 ],
Austin Schuh044e18b2015-10-21 20:17:09 -070023)
Brian Silverman6470f442018-08-05 12:08:16 -070024
25py_library(
26 name = "python_init",
27 srcs = ["__init__.py"],
28 visibility = ["//visibility:public"],
29)