1package(default_visibility = ["//visibility:public"]) 2 3cc_library( 4 name = "hardware_uart", 5 srcs = ["uart.c"], 6 hdrs = ["include/hardware/uart.h"], 7 includes = ["include"], 8 target_compatible_with = ["//bazel/constraint:host"], 9 deps = ["//src/host/pico_platform"], 10) 11