blob: 563f05e9af739f7c8150028c9532d9c6db793ec0 [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 ],
Austin Schuh972e47e2018-12-20 17:20:58 -080010 compatible_with = mcu_cpus,
Austin Schuh044e18b2015-10-21 20:17:09 -070011)
12
13cc_library(
Austin Schuhbcce26a2018-03-26 23:41:24 -070014 name = "constants",
15 hdrs = [
16 "constants.h",
17 ],
Austin Schuh044e18b2015-10-21 20:17:09 -070018)
Brian Silverman6470f442018-08-05 12:08:16 -070019
20py_library(
21 name = "python_init",
22 srcs = ["__init__.py"],
23 visibility = ["//visibility:public"],
24)