ARMv7-M MPU: correctly protect 80000000 RAM region

Subregion mask for this region was set fully disabled, instead of fully
enabled.
pull/9208/head
Kevin Bracey 2018-12-12 15:01:19 +02:00 committed by Cruz Monrreal II
parent 4e992a32ce
commit 767c7f646e
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ void mbed_mpu_init()
0, // IsShareable
1, // IsCacheable
0, // IsBufferable
~0U, // SubRegionDisable
0U, // SubRegionDisable
ARM_MPU_REGION_SIZE_512MB) // Size
);