mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 00:32:45 +00:00
This adds supoprt for the Atmel SAME53 SoC. The SAME5x/SAMD5x is a line of Cortex-M4F MCUs that share peripherals with the sam0 Cortex-M0+ and saml1x Cortex-M23 parts. Signed-off-by: Benjamin Valentin <benpicco@googlemail.com>
16 lines
571 B
CMake
16 lines
571 B
CMake
# Makefile - Atmel SAM0 MCU family
|
|
#
|
|
# Copyright (c) 2019 ML!PA Consulting GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAMD20 soc_samd2x.c)
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAMD21 soc_samd2x.c)
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAMR21 soc_samd2x.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAMD51 soc_samd5x.c)
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAME51 soc_samd5x.c)
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAME53 soc_samd5x.c)
|
|
zephyr_sources_ifdef(CONFIG_SOC_SERIES_SAME54 soc_samd5x.c)
|
|
|
|
zephyr_include_directories(.)
|