Skip to content

Commit c92cc03

Browse files
Merge pull request #5 from ARMmbed/PR_STWIN
NEW target: STWIN
2 parents c5d8560 + c6b93c7 commit c92cc03

File tree

6 files changed

+839
-0
lines changed

6 files changed

+839
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Table of Contents
1212
* [LORA_E5](#lora_e5)
1313
* [LoRa-E5 breakout board](#lora-e5-breakout-board)
1414
* [RAK3172](#rak3172)
15+
* [STM32L4](#stm32l4)
16+
* [STWIN](#stwin)
1517
* [License and contributions](#license-and-contributions)
1618

1719

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

6163

64+
# STM32L4
65+
66+
## STWIN
67+
68+
MCU: STM32L4R9ZI
69+
70+
https://www.st.com/en/evaluation-tools/steval-stwinkt1.html
71+
72+
6273
# STM32WL
6374

6475
## LORA_E5

TARGET_STM32L4/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Copyright (c) 2020 ARM Limited. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
3+
4+
add_subdirectory(TARGET_STWIN EXCLUDE_FROM_ALL)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright (c) 2020 ARM Limited. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
add_library(mbed-stwin INTERFACE)
5+
6+
target_sources(mbed-stwin
7+
INTERFACE
8+
PeripheralPins.c
9+
)
10+
11+
target_include_directories(mbed-stwin
12+
INTERFACE
13+
.
14+
)
15+
16+
target_link_libraries(mbed-stwin INTERFACE mbed-stm32l4r9xi)

0 commit comments

Comments
 (0)