blob: a94c62ca92eb3e78f4de51a3eaee3b46512d6f02 [file] [log] [blame]
load("//bazel:defs.bzl", "compatible_with_rp2")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_adc",
srcs = ["adc.c"],
hdrs = ["include/hardware/adc.h"],
includes = ["include"],
target_compatible_with = compatible_with_rp2(),
deps = [
"//src/rp2_common:hardware_structs",
"//src/rp2_common:pico_platform",
"//src/rp2_common/hardware_gpio",
"//src/rp2_common/hardware_resets",
],
)