Skip to content

Commit fa62e80

Browse files
authored
Merge pull request #14249 from jeromecoutant/PR_STM32WL_LORA
STM32WL : add LoRa support
2 parents 24c9d24 + 81a44fc commit fa62e80

File tree

11 files changed

+2743
-1
lines changed

11 files changed

+2743
-1
lines changed

connectivity/drivers/lora/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ endif()
1212
if("SX1276" IN_LIST MBED_TARGET_LABELS)
1313
add_subdirectory(COMPONENT_SX1276)
1414
endif()
15+
16+
if("STM32WL" IN_LIST MBED_TARGET_LABELS)
17+
add_subdirectory(TARGET_STM32WL)
18+
endif()
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copyright (c) 2020 ARM Limited. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
target_include_directories(mbed-lorawan
5+
INTERFACE
6+
.
7+
)
8+
9+
target_sources(mbed-lorawan
10+
INTERFACE
11+
STM32WL_LoRaRadio.cpp
12+
)

0 commit comments

Comments
 (0)