mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 22:57:00 +00:00
Use an external CMSIS repo instead of keeping a copy in ext/hal. Closes #23373 Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HAS_CMSIS_CORE
|
|
bool
|
|
select HAS_CMSIS_CORE_M if CPU_CORTEX_M
|
|
select HAS_CMSIS_CORE_R if CPU_CORTEX_R
|
|
|
|
if HAS_CMSIS_CORE
|
|
|
|
config HAS_CMSIS_CORE_M
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_R
|
|
bool
|
|
|
|
endif
|