From 188af9bd40770d02dd93016fa231a21a0a7bc791 Mon Sep 17 00:00:00 2001 From: maze Date: Thu, 26 Mar 2026 13:05:07 +0100 Subject: [PATCH] Re-enable lr11xx out-of-tree driver --- app/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 0d27747..a0b4e66 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -9,9 +9,10 @@ list(APPEND DTS_ROOT ${CMAKE_CURRENT_LIST_DIR}/..) # LR11xx out-of-tree driver is currently not added as a Zephyr module # to avoid Kconfig dependency issues during board prototyping. # If needed, re-enable by appending the driver path to ZEPHYR_EXTRA_MODULES. -# list(APPEND ZEPHYR_EXTRA_MODULES -# ${CMAKE_CURRENT_LIST_DIR}/../drivers/lora/lr11xx -# ) +list(APPEND ZEPHYR_EXTRA_MODULES + ${CMAKE_CURRENT_LIST_DIR}/../drivers/lora/lr11xx +) + find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})