blob: c4d208799f2c185a8ff42cb971b7a912547fea6d [file] [log] [blame] [edit]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_interp",
srcs = ["interp.c"],
hdrs = ["include/hardware/interp.h"],
includes = ["include"],
target_compatible_with = select({
"//bazel/constraint:rp2": [],
"//conditions:default": ["@platforms//:incompatible"],
}),
deps = [
"//src/common/pico_base",
"//src/rp2_common/hardware_claim",
"//src/rp2_common/pico_platform:hardware_regs",
"//src/rp2_common/pico_platform:hardware_structs",
],
)