2017-01-13 17:46:53 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Nordic Semiconductor ASA
|
2023-11-06 14:58:00 +01:00
|
|
|
* Copyright (c) 2023 Arm Limited
|
2017-01-13 17:46:53 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief CMSIS interface file
|
|
|
|
*
|
|
|
|
* This header contains the interface to the ARM CMSIS Core headers.
|
|
|
|
*/
|
|
|
|
|
2023-06-29 18:22:37 +02:00
|
|
|
#ifndef ZEPHYR_MODULES_CMSIS_CMSIS_M_H_
|
|
|
|
#define ZEPHYR_MODULES_CMSIS_CMSIS_M_H_
|
2017-01-13 17:46:53 +01:00
|
|
|
|
2023-07-04 10:01:39 +02:00
|
|
|
#include <zephyr/arch/arm/cortex_m/nvic.h>
|
2020-04-15 18:27:43 +02:00
|
|
|
|
2022-10-11 12:57:51 +02:00
|
|
|
#include <soc.h>
|
|
|
|
|
2023-06-29 18:22:37 +02:00
|
|
|
#endif /* ZEPHYR_MODULES_CMSIS_CMSIS_M_H_ */
|