Add XIAO Wio-SX1262 overlay; support SX12xx bandwidths (including 62.5 kHz) as default

- boards/seeed/xiao_wio_sx1262: add overlay, .conf, board.yml
- app: support full set of SX12xx bandwidths; default BW set to 62 (62.5 kHz)
- Update Kconfig and prj.conf
- Update lora_modem.h/c for validation and mapping
This commit is contained in:
2026-03-26 13:01:47 +01:00
parent d074cd2e43
commit 45d1364a71
926 changed files with 174514 additions and 26 deletions

View File

@@ -6,11 +6,12 @@ cmake_minimum_required(VERSION 3.20.0)
list(APPEND BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR}/..)
list(APPEND DTS_ROOT ${CMAKE_CURRENT_LIST_DIR}/..)
# Register the LR11xx out-of-tree driver as an extra Zephyr module.
# It is only compiled when a semtech,lr11xx DTS node is enabled.
list(APPEND ZEPHYR_EXTRA_MODULES
${CMAKE_CURRENT_LIST_DIR}/../drivers/lora/lr11xx
)
# 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
# )
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})