Skip to content

Commit 936ed20

Browse files
committed
Fix bazel build issues
1 parent bec3f5b commit 936ed20

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/rp2_common/pico_aon_timer/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ cc_library(
1010
target_compatible_with = compatible_with_rp2(),
1111
deps = [
1212
"//src/common/pico_util",
13+
"//src/common/pico_time",
1314
"//src/rp2_common:hardware_regs",
1415
"//src/rp2_common:pico_platform",
1516
"//src/rp2_common/hardware_irq",

test/pico_time_test/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cc_binary(
1212
target_compatible_with = compatible_with_rp2(),
1313
deps = [
1414
"//src/rp2_common/pico_stdlib",
15+
"//src/rp2_common/pico_aon_timer",
1516
"//test/pico_test",
1617
],
1718
)

test/pico_time_test/pico_time_test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,4 +397,5 @@ static int issue_2148_test(void) {
397397
aon_timer_stop();
398398
PICOTEST_END_SECTION();
399399
#endif
400+
return 0;
400401
}

0 commit comments

Comments
 (0)