Skip to content

Commit

Permalink
Merge pull request #11261 from NXPmicro/Enable_Tickless_LPC
Browse files Browse the repository at this point in the history
MCUXpresso: Add TICKLESS support for LPC platforms
  • Loading branch information
0xc0170 committed Aug 22, 2019
2 parents 5c09ff1 + 99b1114 commit 9d6bfcf
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions targets/targets.json
Expand Up @@ -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": [
Expand All @@ -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"
Expand All @@ -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",
Expand All @@ -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": {
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
},
Expand All @@ -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"],
Expand Down

0 comments on commit 9d6bfcf

Please sign in to comment.