blob: ea4697d3cb1b8aaf4a0c2a42515f7200a1f1d931 [file] [log] [blame]
load("//bazel:defs.bzl", "compatible_with_rp2")
package(default_visibility = ["//visibility:public"])
cc_binary(
name = "hardware_irq_test",
testonly = True,
srcs = ["hardware_irq_test.c"],
target_compatible_with = compatible_with_rp2(),
deps = [
"//src/common/pico_stdlib",
"//src/common/pico_time",
"//src/rp2_common/hardware_dma",
"//src/rp2_common/hardware_irq",
"//src/rp2_common/pico_platform:hardware_structs",
"//test/pico_test",
],
)