Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Table of Contents
* [LORA_E5](#lora_e5)
* [LoRa-E5 breakout board](#lora-e5-breakout-board)
* [RAK3172](#rak3172)
* [STM32L4](#stm32l4)
* [STWIN](#stwin)
* [License and contributions](#license-and-contributions)


Expand Down Expand Up @@ -59,6 +61,15 @@ source: https://os.mbed.com/users/hudakz/code/mbed-os-bluepill/
(https://os.mbed.com/users/hudakz/code/STM32F103C8T6_Hello/)


# STM32L4

## STWIN

MCU: STM32L4R9ZI

https://www.st.com/en/evaluation-tools/steval-stwinkt1.html


# STM32WL

## LORA_E5
Expand Down
2 changes: 2 additions & 0 deletions TARGET_STM32L4/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

add_subdirectory(TARGET_STWIN EXCLUDE_FROM_ALL)
16 changes: 16 additions & 0 deletions TARGET_STM32L4/TARGET_STWIN/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

add_library(mbed-stwin INTERFACE)

target_sources(mbed-stwin
INTERFACE
PeripheralPins.c
)

target_include_directories(mbed-stwin
INTERFACE
.
)

target_link_libraries(mbed-stwin INTERFACE mbed-stm32l4r9xi)
Loading