1 /*
2  * Copyright (c) 2016 Linaro Limited
3  * Copyright (c) 2021 Yonatan Schachter
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 /**
9  * @file SoC configuration macros for the Raspberry Pi RP2040 family processors
10  */
11 
12 #ifndef _RPI_PICO_RP2040_SOC_H_
13 #define _RPI_PICO_RP2040_SOC_H_
14 
15 
16 #define __VTOR_PRESENT CONFIG_CPU_CORTEX_M_HAS_VTOR
17 #define __MPU_PRESENT CONFIG_CPU_HAS_ARM_MPU
18 
19 #endif /* _RPI_PICO_RP2040_SOC_H_ */
20