diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-29 11:42:22 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-29 11:42:22 -0600 |
commit | bcaf0bc655df337bc02c5dd78bfc3f4487103959 (patch) | |
tree | c6c3383f5a8b8832f2365c216c33e5c929653836 /libhw/CMakeLists.txt | |
parent | 7ff738390e55d57a0f513c467a9da3b08c6902ab (diff) |
Implement RP2040 hw alarms
Diffstat (limited to 'libhw/CMakeLists.txt')
-rw-r--r-- | libhw/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhw/CMakeLists.txt b/libhw/CMakeLists.txt index 47ffbdd..0dee422 100644 --- a/libhw/CMakeLists.txt +++ b/libhw/CMakeLists.txt @@ -12,15 +12,15 @@ target_link_libraries(libhw INTERFACE if (PICO_PLATFORM STREQUAL "rp2040") target_include_directories(libhw SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/rp2040_include) target_sources(libhw INTERFACE - rp2040_bootclock.c + rp2040_hwtimer.c rp2040_hwspi.c w5500.c ) target_link_libraries(libhw INTERFACE - pico_time - hardware_timer hardware_gpio + hardware_irq hardware_spi + hardware_timer ) endif() |