diff --git a/CODEOWNERS b/CODEOWNERS index c39c9e19b4fa..d634b37b5c65 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -47,6 +47,7 @@ /boards/arm/96b_nitrogen/ @idlethread /boards/arm/96b_neonkey/ @Mani-Sadhasivam /boards/arm/96b_stm32_sensor_mez/ @Mani-Sadhasivam +/boards/arm/arduino_due/ @ioannisg /boards/arm/cc3220sf_launchxl/ @vanti /boards/arm/curie_ble/ @jhedberg /boards/arm/disco_l475_iot1/ @erwango diff --git a/boards/arm/arduino_due/arduino_due_defconfig b/boards/arm/arduino_due/arduino_due_defconfig index 08e6fcf5f4d9..ca09b23ca79d 100644 --- a/boards/arm/arduino_due/arduino_due_defconfig +++ b/boards/arm/arduino_due/arduino_due_defconfig @@ -6,6 +6,7 @@ CONFIG_SOC_SERIES_SAM3X=y CONFIG_SOC_PART_NUMBER_SAM3X8E=y CONFIG_BOARD_ARDUINO_DUE=y CONFIG_CORTEX_M_SYSTICK=y +CONFIG_ARM_MPU=y CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y CONFIG_SERIAL=y diff --git a/soc/arm/atmel_sam/common/arm_mpu_regions.c b/soc/arm/atmel_sam/common/arm_mpu_regions.c index 674eb5f2506d..0f7bf93c5c9b 100644 --- a/soc/arm/atmel_sam/common/arm_mpu_regions.c +++ b/soc/arm/atmel_sam/common/arm_mpu_regions.c @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 */ -#include +#include #include #include "arm_mpu_mem_cfg.h" diff --git a/soc/arm/atmel_sam/sam3x/soc.h b/soc/arm/atmel_sam/sam3x/soc.h index 6d1e03d1f590..591dfcf60032 100644 --- a/soc/arm/atmel_sam/sam3x/soc.h +++ b/soc/arm/atmel_sam/sam3x/soc.h @@ -35,6 +35,9 @@ #error Library does not support the specified device. #endif +/* Add include for DTS generated information */ +#include + #define ID_UART0 ID_UART #define UART0 UART