blob: 5c1b2d086b180fd8bec668c830a67bf9e2d82d4e [file] [log] [blame] [edit]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_exception",
srcs = ["exception.c"],
hdrs = ["include/hardware/exception.h"],
includes = ["include"],
target_compatible_with = select({
"//bazel/constraint:rp2": [],
"//conditions:default": ["@platforms//:incompatible"],
}),
deps = [
"//src/common/pico_base",
"//src/rp2_common/hardware_base",
"//src/rp2_common/hardware_sync",
"//src/rp2_common/pico_platform:hardware_structs",
"//src/rp2_common/pico_platform:platform_defs",
],
)