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/9061/head
parent
171e575b94
commit
170b73442b
|
@ -163,7 +163,7 @@ void mbed_mpu_init()
|
|||
0, // IsShareable
|
||||
1, // IsCacheable
|
||||
0, // IsBufferable
|
||||
~0U, // SubRegionDisable
|
||||
0U, // SubRegionDisable
|
||||
ARM_MPU_REGION_SIZE_512MB) // Size
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue