Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIcenowy Zheng <icenowy@aosc.io>2019-02-18 20:25:12 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-05 23:25:43 +0300
commit54eff24e7c0fe3e0eba69f414452033ebc90fb9b (patch)
tree1de5841b43afbfd61352a55de9749fb190ba59b1 /Makefile
parenta65285653376717390cff0e0377a732835b782b1 (diff)
swm050: new MCU family
SWM050 is a series of MCU made by Foshan Synwit Tech. It contains a Cortex-M0 CPU core, 8KiB of Flash and 1KiB of SRAM. The only peripherals are GPIO, Timer and WDT. There's only two parts in this series, with either TSSOP-8 or SSOP-16 packages. This commit introduces the interrupt vector and GPIO support for them. Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 36e1f2f6..02a46bfe 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,8 @@ TARGETS ?= stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
efm32/ezr32wg \
sam/3a sam/3n sam/3s sam/3u sam/3x sam/4l \
sam/d \
- vf6xx
+ vf6xx \
+ swm050
# Be silent per default, but 'make V=1' will show all compiler calls.
ifneq ($(V),1)