mirror of https://github.com/ARMmbed/mbed-os.git
Turn off MPU on targets failing OOB
Turn off MPU for the UBLOX_C030 and MCU_M480 and all targets derived from these. When the MPU is enabled on these platforms they do not pass the pelion-enablement tests. Once the root cause is determined and fixed the MPU can be re-enabled for these targets.pull/8994/head
parent
78d6018ecc
commit
b217c5fe4d
|
@ -4087,7 +4087,8 @@
|
||||||
"macros_add": [
|
"macros_add": [
|
||||||
"MBEDTLS_CONFIG_HW_SUPPORT",
|
"MBEDTLS_CONFIG_HW_SUPPORT",
|
||||||
"HSE_VALUE=12000000",
|
"HSE_VALUE=12000000",
|
||||||
"GNSSBAUD=9600"
|
"GNSSBAUD=9600",
|
||||||
|
"MBED_MPU_CUSTOM"
|
||||||
],
|
],
|
||||||
"overrides": { "lse_available": 0 },
|
"overrides": { "lse_available": 0 },
|
||||||
"device_has_add": [
|
"device_has_add": [
|
||||||
|
@ -4095,8 +4096,7 @@
|
||||||
"EMAC",
|
"EMAC",
|
||||||
"SERIAL_FC",
|
"SERIAL_FC",
|
||||||
"TRNG",
|
"TRNG",
|
||||||
"FLASH",
|
"FLASH"
|
||||||
"MPU"
|
|
||||||
],
|
],
|
||||||
"public": false,
|
"public": false,
|
||||||
"device_name": "STM32F437VG",
|
"device_name": "STM32F437VG",
|
||||||
|
@ -7239,7 +7239,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"inherits": ["Target"],
|
"inherits": ["Target"],
|
||||||
"macros_add": ["MBEDTLS_CONFIG_HW_SUPPORT", "LPTICKER_DELAY_TICKS=3"],
|
"macros_add": ["MBEDTLS_CONFIG_HW_SUPPORT", "LPTICKER_DELAY_TICKS=3", "MBED_MPU_CUSTOM"],
|
||||||
"device_has": [
|
"device_has": [
|
||||||
"USTICKER",
|
"USTICKER",
|
||||||
"LPTICKER",
|
"LPTICKER",
|
||||||
|
@ -7265,8 +7265,7 @@
|
||||||
"TRNG",
|
"TRNG",
|
||||||
"FLASH",
|
"FLASH",
|
||||||
"CAN",
|
"CAN",
|
||||||
"EMAC",
|
"EMAC"
|
||||||
"MPU"
|
|
||||||
],
|
],
|
||||||
"release_versions": ["5"],
|
"release_versions": ["5"],
|
||||||
"bootloader_supported": true,
|
"bootloader_supported": true,
|
||||||
|
|
Loading…
Reference in New Issue