Skip to content

Support NUMAKER_IOT_M263A (re-raise) #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 18, 2020
Merged
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 @@ -29,6 +29,7 @@ Board | Connectivity | Storage for credentials and
`Nuvoton NUMAKER_PFM_NUC472` | Ethernet | SD card (NUSD) | Build-only
`Nuvoton NUMAKER_PFM_M487` | Ethernet | SD card (NUSD) | Build-only
`Nuvoton NUMAKER_IOT_M487` | Wi-Fi ESP8266 | SD card (NUSD) | Build-only
`Nuvoton NUMAKER_IOT_M263A` | Wi-Fi ESP8266 | SD card (NUSD) | Build-only
`Seeed ARCH_MAX` | Ethernet | SD card | Build-only
`Seeed Wio 3G` | Cellular | Internal Flash | 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
Expand Down
Binary file not shown.
31 changes: 31 additions & 0 deletions mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,37 @@
"esp8266.provide-default" : true,
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS_SW_TRNG_PSA.h\"", "MBEDTLS_PSA_CRYPTO_C", "MBEDTLS_ENTROPY_NV_SEED", "PAL_USE_HW_TRNG=0", "ESP8266_SEND_TIMEOUT=8000"]
},
"NUMAKER_IOT_M263A": {
"target.extra_labels_add" : ["PSA"],
"target.network-default-interface-type" : "WIFI",
"target.bootloader_img" : "bootloader/mbed-bootloader-m263_iot-block_device-kvstore-v4.1.0.bin",
"bootloader-size" : "(64*1024)",
"target.header_offset" : "0x12000",
"target.app_offset" : "0x12400",
"target.components_add" : ["NUSD"],
"nusd.provide-default-blockdevice" : true,
"nusd.provide-kvstore-other-blockdevice" : true,
"update-client.bootloader-details" : "0x0",
"update-client.application-details" : "0x12000",
"update-client.storage-address" : "(1024*1024*64)",
"update-client.storage-size" : "((MBED_ROM_START + MBED_ROM_SIZE - APPLICATION_ADDR) * MBED_CONF_UPDATE_CLIENT_STORAGE_LOCATIONS)",
"update-client.storage-locations" : 1,
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP_BLOCKDEVICE",
"storage.storage_type" : "FILESYSTEM",
"storage_filesystem.filesystem" : "LITTLE",
"storage_filesystem.blockdevice" : "other",
"storage_filesystem.internal_base_address" : "(MBED_ROM_START + MBED_BOOTLOADER_SIZE)",
"storage_filesystem.rbp_internal_size" : "(2*4*1024)",
"storage_filesystem.external_base_address" : "(0x0)",
"storage_filesystem.external_size" : "(1024*1024*64)",
"esp8266.tx" : "PC_7",
"esp8266.rx" : "PC_6",
"esp8266.rts" : "PE_13",
"esp8266.cts" : "PC_8",
"esp8266.rst" : "PE_12",
"esp8266.provide-default" : true,
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS_SW_TRNG_PSA.h\"", "MBEDTLS_PSA_CRYPTO_C", "MBEDTLS_ENTROPY_NV_SEED", "PAL_USE_HW_TRNG=0", "ESP8266_SEND_TIMEOUT=8000"]
},
"DISCO_L475VG_IOT01A": {
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.network-default-interface-type" : "WIFI",
Expand Down