mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #11261 from NXPmicro/Enable_Tickless_LPC
MCUXpresso: Add TICKLESS support for LPC platformspull/11289/head
commit
9d6bfcfc78
|
@ -1987,7 +1987,11 @@
|
|||
"LPC"
|
||||
],
|
||||
"is_disk_virtual": true,
|
||||
"macros": ["CPU_LPC54114J256BD64_cm4", "FSL_RTOS_MBED"],
|
||||
"macros": [
|
||||
"CPU_LPC54114J256BD64_cm4",
|
||||
"FSL_RTOS_MBED",
|
||||
"MBED_TICKLESS"
|
||||
],
|
||||
"inherits": ["Target"],
|
||||
"detect_code": ["1054"],
|
||||
"device_has": [
|
||||
|
@ -2008,6 +2012,10 @@
|
|||
"FLASH",
|
||||
"MPU"
|
||||
],
|
||||
"overrides": {
|
||||
"tickless-from-us-ticker": true,
|
||||
"init-us-ticker-at-boot": true
|
||||
},
|
||||
"release_versions": ["2", "5"],
|
||||
"post_binary_hook": { "function": "LPCTargetCode.lpc_patch" },
|
||||
"device_name": "LPC54114J256BD64"
|
||||
|
@ -2023,7 +2031,11 @@
|
|||
],
|
||||
"is_disk_virtual": true,
|
||||
"public": false,
|
||||
"macros": ["CPU_LPC54628J512ET180", "FSL_RTOS_MBED"],
|
||||
"macros": [
|
||||
"CPU_LPC54628J512ET180",
|
||||
"FSL_RTOS_MBED",
|
||||
"MBED_TICKLESS"
|
||||
],
|
||||
"inherits": ["Target"],
|
||||
"device_has": [
|
||||
"USTICKER",
|
||||
|
@ -2046,6 +2058,10 @@
|
|||
"QSPI",
|
||||
"MPU"
|
||||
],
|
||||
"overrides": {
|
||||
"tickless-from-us-ticker": true,
|
||||
"init-us-ticker-at-boot": true
|
||||
},
|
||||
"device_name": "LPC54628J512ET180",
|
||||
"post_binary_hook": { "function": "LPCTargetCode.lpc_patch" },
|
||||
"overrides": {
|
||||
|
@ -2095,7 +2111,8 @@
|
|||
"MBED_FAULT_HANDLER_DISABLED",
|
||||
"CMSIS_NVIC_VIRTUAL",
|
||||
"MBED_MPU_CUSTOM",
|
||||
"NXP_LPADC"
|
||||
"NXP_LPADC",
|
||||
"MBED_TICKLESS"
|
||||
],
|
||||
"components_add": ["FLASHIAP"],
|
||||
"extra_labels_add": [
|
||||
|
@ -2131,7 +2148,9 @@
|
|||
"secure-rom-start": "0x10000000",
|
||||
"secure-rom-size": "0x28000",
|
||||
"secure-ram-start": "0x30000000",
|
||||
"secure-ram-size": "0x22000"
|
||||
"secure-ram-size": "0x22000",
|
||||
"tickless-from-us-ticker": true,
|
||||
"init-us-ticker-at-boot": true
|
||||
},
|
||||
"OUTPUT_EXT": "hex",
|
||||
"bootloader_supported": true
|
||||
|
@ -8581,7 +8600,7 @@
|
|||
"bootloader_supported": true,
|
||||
"mbed_rom_start": "0x10000000",
|
||||
"mbed_rom_size": "0x100000",
|
||||
"sectors": [[268435456, 512]],
|
||||
"sectors": [[268435456, 512]],
|
||||
"overrides": {
|
||||
"network-default-interface-type": "WIFI"
|
||||
},
|
||||
|
@ -8596,7 +8615,7 @@
|
|||
"bootloader_supported": true,
|
||||
"mbed_rom_start": "0x10000000",
|
||||
"mbed_rom_size": "0x200000",
|
||||
"sectors": [[268435456, 512]]
|
||||
"sectors": [[268435456, 512]]
|
||||
},
|
||||
"CY8CKIT_062S2_43012": {
|
||||
"inherits": ["CY8CMOD_062S2_43012"],
|
||||
|
|
Loading…
Reference in New Issue