mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 15:25:20 +00:00
IPM driver relies on STM32 IPCC internal peripheral. Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
12 lines
425 B
CMake
12 lines
425 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_MCUX ipm_mcux.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_IMX ipm_imx.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_QUARK_SE ipm_quark_se.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_MHU ipm_mhu.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_STM32_IPCC ipm_stm32_ipcc.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE ipm_handlers.c)
|