File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ cc_library(
11
11
target_compatible_with = compatible_with_rp2 (),
12
12
deps = [
13
13
"//src/rp2_common:hardware_structs" ,
14
+ "//src/rp2_common/hardware_xip_cache" ,
14
15
"//src/rp2_common:pico_platform" ,
15
16
"//src/rp2_common/pico_bootrom" ,
16
17
"//src/rp2_common/pico_multicore" ,
Original file line number Diff line number Diff line change
1
+ load ("//bazel:defs.bzl" , "compatible_with_rp2" )
2
+
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ cc_library (
6
+ name = "hardware_xip_cache" ,
7
+ srcs = ["xip_cache.c" ],
8
+ hdrs = ["include/hardware/xip_cache.h" ],
9
+ includes = ["include" ],
10
+ target_compatible_with = compatible_with_rp2 (),
11
+ deps = [
12
+ "//src/rp2_common/hardware_sync" ,
13
+ ],
14
+ )
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ cc_library(
60
60
"//src/rp2_common/hardware_uart" ,
61
61
"//src/rp2_common/hardware_vreg" ,
62
62
"//src/rp2_common/hardware_watchdog" ,
63
+ "//src/rp2_common/hardware_xip_cache" ,
63
64
"//src/rp2_common/hardware_xosc" ,
64
65
"//src/rp2_common/pico_aon_timer" ,
65
66
"//src/rp2_common/pico_bootrom" ,
You can’t perform that action at this time.
0 commit comments