mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-25 12:02:27 +00:00
19 lines
506 B
Python
19 lines
506 B
Python
load("//bazel:defs.bzl", "compatible_with_rp2")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_binary(
|
|
name = "hardware_pwm_test",
|
|
testonly = True,
|
|
srcs = ["hardware_pwm_test.c"],
|
|
target_compatible_with = compatible_with_rp2(),
|
|
deps = [
|
|
"//src/common/pico_time",
|
|
"//src/rp2_common/hardware_irq",
|
|
"//src/rp2_common/hardware_pwm",
|
|
"//src/rp2_common/hardware_resets",
|
|
"//src/rp2_common/pico_stdlib",
|
|
"//test/pico_test",
|
|
],
|
|
)
|