From bcaf0bc655df337bc02c5dd78bfc3f4487103959 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 29 Oct 2024 11:42:22 -0600 Subject: Implement RP2040 hw alarms --- libhw/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libhw/CMakeLists.txt') 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() -- cgit v1.2.3-2-g168b