We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 271e2a3 + 0ebe81f commit 4232642Copy full SHA for 4232642
hw/bsp/rp2040/family.c
@@ -31,6 +31,7 @@
31
#include "hardware/gpio.h"
32
#include "hardware/sync.h"
33
#include "hardware/resets.h"
34
+#include "hardware/clocks.h"
35
#include "hardware/structs/ioqspi.h"
36
#include "hardware/structs/sio.h"
37
hw/bsp/rp2040/family.cmake
@@ -133,7 +133,10 @@ target_sources(tinyusb_bsp INTERFACE
133
target_include_directories(tinyusb_bsp INTERFACE
134
${TOP}/hw
135
)
136
-target_link_libraries(tinyusb_bsp INTERFACE pico_unique_id)
+target_link_libraries(tinyusb_bsp INTERFACE
137
+ pico_unique_id
138
+ hardware_clocks
139
+ )
140
141
# tinyusb_additions will hold our extra settings for examples
142
add_library(tinyusb_additions INTERFACE)
0 commit comments