mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 23:45:47 +00:00
This commit updates the west.yml to point to the commit that adds the CMSIS-Core(A) and defines the configurations to enable it, in preparation for the AArch32 Cortex-A architecture support in Zephyr. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
22 lines
348 B
Plaintext
22 lines
348 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HAS_CMSIS_CORE
|
|
bool
|
|
select HAS_CMSIS_CORE_A if CPU_CORTEX_A
|
|
select HAS_CMSIS_CORE_R if CPU_CORTEX_R
|
|
select HAS_CMSIS_CORE_M if CPU_CORTEX_M
|
|
|
|
if HAS_CMSIS_CORE
|
|
|
|
config HAS_CMSIS_CORE_A
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_R
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_M
|
|
bool
|
|
|
|
endif
|