Skip to content

Add target C030_R412M #66

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
Dec 5, 2019
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 @@ -22,6 +22,7 @@ Board | Connectivity | Storage for credentials and
`Ublox UBLOX_EVK_ODIN_W2` | Wi-Fi | SD card |
`ST DISCO_L475VG_IOT01A` | Wi-Fi | QSPIF |
`Ublox UBLOX_C030_U201` | Cellular | SD card | Build-only
`Ublox UBLOX_C030_R412M` | Cellular | SD card | Build-only

Build-only = This target is currently verified only via compilation, and is not verified at runtime.

Expand Down
Binary file not shown.
22 changes: 22 additions & 0 deletions mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,28 @@
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"],
"platform.default-serial-baud-rate" : 115200
},
"UBLOX_C030_R412M": {
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.network-default-interface-type" : "CELLULAR",
"target.bootloader_img" : "bootloader/mbed-bootloader-ublox_c030_r412m-block_device-kvstore-v4.0.3.bin",
"target.header_offset" : "0x10000",
"target.app_offset" : "0x10400",
"target.components_add" : ["SD", "FLASHIAP"],
"update-client.bootloader-details" : "0x08006F1C",
"update-client.application-details" : "(0x08000000+64*1024)",
"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)",
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP_BLOCKDEVICE",
"storage_filesystem.internal_base_address" : "(0x08000000+32*1024)",
"storage_filesystem.rbp_internal_size" : "(32*1024)",
"storage_filesystem.external_base_address" : "(0x0)",
"storage_filesystem.external_size" : "(1024*1024*64)",
"storage.storage_type" : "FILESYSTEM",
"storage_filesystem.filesystem" : "LITTLE",
"storage_filesystem.blockdevice" : "SD",
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"],
"platform.default-serial-baud-rate" : 115200
},
"NUCLEO_F411RE": {
"target.extra_labels_add" : ["PSA"],
"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"],
Expand Down