mirror of https://github.com/ARMmbed/mbed-os.git
ARMv7-M MPU: correctly protect 80000000 RAM region
Subregion mask for this region was set fully disabled, instead of fully enabled.pull/9208/head
parent
4e992a32ce
commit
767c7f646e
|
@ -163,7 +163,7 @@ void mbed_mpu_init()
|
||||||
0, // IsShareable
|
0, // IsShareable
|
||||||
1, // IsCacheable
|
1, // IsCacheable
|
||||||
0, // IsBufferable
|
0, // IsBufferable
|
||||||
~0U, // SubRegionDisable
|
0U, // SubRegionDisable
|
||||||
ARM_MPU_REGION_SIZE_512MB) // Size
|
ARM_MPU_REGION_SIZE_512MB) // Size
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue