1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

cpu/stm32: disable MPU for stm32g0

MPU is broken on cortex-m0+ in the current state
This commit is contained in:
Alexandre Abadie 2020-08-21 14:55:50 +02:00
parent 0b6394c55d
commit fd71e09b69
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 1 additions and 2 deletions

View File

@ -70,7 +70,6 @@ config CPU_FAM_G0
select CPU_STM32
select CPU_CORE_CORTEX_M0PLUS
select HAS_CPU_STM32G0
select HAS_CORTEXM_MPU
select HAS_PERIPH_FLASHPAGE
select HAS_PERIPH_FLASHPAGE_RAW

View File

@ -32,7 +32,7 @@ ifneq (,$(filter $(CPU_FAM),f2 f4 f7 g4 l0 l4 wb))
endif
endif
ifneq (,$(filter $(CPU_FAM),f2 f4 f7 g0 g4 l1 l4))
ifneq (,$(filter $(CPU_FAM),f2 f4 f7 g4 l1 l4))
FEATURES_PROVIDED += cortexm_mpu
endif