From 8dc86e5ec58ec94f7ea8227ee008ded202c4204f Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 26 Feb 2025 14:26:28 -0700 Subject: libhw: Add rp2040_gpioirq, use it --- libhw/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libhw/CMakeLists.txt') diff --git a/libhw/CMakeLists.txt b/libhw/CMakeLists.txt index d1767da..bd92e04 100644 --- a/libhw/CMakeLists.txt +++ b/libhw/CMakeLists.txt @@ -1,6 +1,6 @@ # libhw/CMakeLists.txt - Device drivers # -# Copyright (C) 2024 Luke T. Shumaker +# Copyright (C) 2024-2025 Luke T. Shumaker # SPDX-License-Identifier: AGPL-3.0-or-later add_library(libhw INTERFACE) @@ -14,8 +14,9 @@ if (PICO_PLATFORM STREQUAL "rp2040") libcr_ipc ) target_sources(libhw INTERFACE - rp2040_hwtimer.c + rp2040_gpioirq.c rp2040_hwspi.c + rp2040_hwtimer.c w5500.c ) target_link_libraries(libhw INTERFACE -- cgit v1.2.3-2-g168b