From 61f89b7b18a100744066c71c0cdee0c5ec58719a Mon Sep 17 00:00:00 2001 From: TOKITA Hiroshi Date: Fri, 20 Jan 2023 12:27:25 +0900 Subject: [PATCH] boards: arm: rpi_pico: Enable MPU defaultly RP2040 has the Memory Protection Unit. Zephyr generally enables it by default if it exists. Make enabling it default also on rpi pico. Signed-off-by: TOKITA Hiroshi --- boards/arm/rpi_pico/rpi_pico_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/arm/rpi_pico/rpi_pico_defconfig b/boards/arm/rpi_pico/rpi_pico_defconfig index 939e92d10ef..7c3fa601d0e 100644 --- a/boards/arm/rpi_pico/rpi_pico_defconfig +++ b/boards/arm/rpi_pico/rpi_pico_defconfig @@ -1,5 +1,6 @@ CONFIG_SOC_SERIES_RP2XXX=y CONFIG_SOC_RP2040=y +CONFIG_ARM_MPU=y CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=125000000 CONFIG_SERIAL=y CONFIG_CONSOLE=y