Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Nuvoton `NUMAKER_PFM_M487` | Ethernet | SD card (NUSD)
Nuvoton `NUMAKER_PFM_NUC472` | Ethernet | SD card (NUSD) | Build-only
NXP `K64F` | Ethernet | Internal Flash |
NXP `K66F` | Ethernet | Internal Flash |
NXP `MIMXRT1050_EVK` | Ethernet | External QSPI Flash |
Renesas `GR_LYCHEE` | Wi-Fi ESP32 | External Flash ([See security limitation of this board](https://os.mbed.com/platforms/Renesas-GR-LYCHEE/#security-limitation-of-this-platform)) | Build-only
Renesas `RZ_A1H` | Ethernet | External Flash ([See security limitation of this board](https://os.mbed.com/platforms/Renesas-GR-PEACH/#security-limitation-of-this-platform)) | Build-only
Seeed `ARCH_MAX` | Ethernet | SD card | Build-only
Expand Down
Binary file not shown.
26 changes: 26 additions & 0 deletions mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,32 @@
"storage.storage_type" : "TDB_INTERNAL",
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START + 32*1024)",
"storage_tdb_internal.internal_size" : "(32*2*1024)"
},
"MIMXRT1050_EVK": {
"target.macros_remove" : ["HYPERFLASH_BOOT"],
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.macros_add" : ["MBED_APP_COMPILE"],
"target.network-default-interface-type" : "ETHERNET",
"target.mbed_rom_start" : "0x60000000",
"target.mbed_rom_size" : "0x800000",
"target.sectors" : [[1610612736,4096]],
"target.bootloader_img" : "bootloader/mbed-bootloader-rt1050-qspi-internal_flash-no_rot-94579e9.bin",
"target.header_offset" : "0x10000",
"target.app_offset" : "0x10400",
"target.restrict_size" : "0x1EFC00",
"update-client.bootloader-details" : "0x6000F000",
"bootloader-size" : "(64*1024)",
"update-client.application-details" : "0x60010000",
"update-client.storage-address" : "(MBED_ROM_START + 64*1024 + 1984*1024)",
"update-client.storage-size" : "(1984*1024)",
"update-client.storage-locations" : 1,
"update-client.storage-page" : 8,
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START + 64*1024 + 1984*2*1024 + 64*1024)",
"storage_tdb_internal.internal_size" : "(2*128*1024)",
"storage.storage_type" : "TDB_INTERNAL",
"run-ci" : 2,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this parameter is internal meta-data for CI, and should not be configured in PRs.

"mbed-trace.enable" : 1
}
},
"config": {
Expand Down