You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
331 B
13 lines
331 B
/* |
|
* Copyright (c) 2023 Nordic Semiconductor ASA |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef ZEPHYR_MODULES_CMSIS_CMSIS_H_ |
|
#define ZEPHYR_MODULES_CMSIS_CMSIS_H_ |
|
|
|
#if defined(CONFIG_CPU_AARCH32_CORTEX_A) || defined(CONFIG_CPU_AARCH32_CORTEX_R) |
|
#include "cmsis_core_a_r.h" |
|
#endif |
|
|
|
#endif /* ZEPHYR_MODULES_CMSIS_CMSIS_H_ */
|
|
|