mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 07:26:08 +00:00
Add support for C-M4 core on STM32H7 series. It is enabled in Dual core context with 2 alternatives boot methods: * Boot CM4 CM7: Both core boot at reset, then CM4 enters Stop mode. CM7 performs system configuration then finally wakes up CM4 * Boot CM7, CM4 Gated: Only CM7 boots at reset. Once done with system configuration it triggers (requires option byte update) Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
7 lines
195 B
CMake
7 lines
195 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_include_directories(${ZEPHYR_BASE}/drivers)
|
|
|
|
zephyr_sources_ifdef(CONFIG_CPU_CORTEX_M7 soc_m7.c)
|
|
zephyr_sources_ifdef(CONFIG_CPU_CORTEX_M4 soc_m4.c)
|