We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 608a5da commit ad905aeCopy full SHA for ad905ae
lib/libpico.a
11.6 KB
tools/libpico/CMakeLists.txt
@@ -13,9 +13,11 @@ pico_sdk_init()
13
14
add_library(pico STATIC)
15
16
+# Use a longer XOSC startup time, to accomodate Adafruit and other boards that may need it.
17
target_compile_definitions(pico PUBLIC
18
PICO_PRINTF_ALWAYS_INCLUDED=1
19
PICO_FLASH_SIZE_BYTES=16777216
20
+ PICO_XOSC_STARTUP_DELAY_MULTIPLIER=64
21
)
22
23
target_compile_options(pico PUBLIC
@@ -25,7 +27,7 @@ target_compile_options(pico PUBLIC
25
27
26
28
include_directories(BEFORE ${PICO_SDK_PATH}/../tools/libpico)
29
-target_link_libraries(pico
30
+target_link_libraries(pico
31
boot_stage2
32
hardware_adc
33
hardware_base
0 commit comments