Initial Release

This commit is contained in:
graham sanderson
2021-01-20 10:49:34 -06:00
commit 46078742c7
245 changed files with 21157 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
add_library(double_tap_usb_boot INTERFACE)
# inclusion of this library will allow you to double tap reset within 100ms to launch into bootrom USB bootloader
if (PICO_ON_DEVICE)
target_sources(double_tap_usb_boot INTERFACE
${CMAKE_CURRENT_LIST_DIR}/double_tap_usb_boot.c
)
target_link_libraries(double_tap_usb_boot INTERFACE
pico_bootrom
pico_time
)
endif ()