Skip to content

Commit

Permalink
Merge pull request #108 from toyowata/dev_stm32f767zi
Browse files Browse the repository at this point in the history
Add Uhuru RAVEN and NUCLEO F767ZI support
  • Loading branch information
teetak01 authored Feb 6, 2020
2 parents d24114c + 4e6ad26 commit 0ab340e
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Board | Connectivity | Storage for credentials and
`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
`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
`Uhuru UHURU_RAVEN` | Wi-Fi (ESP32) | Internal Flash | Build-only
`ST NUCLEO_F767ZI` | Ethernet | Internal Flash | Build-only

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

Expand Down
Binary file not shown.
47 changes: 47 additions & 0 deletions mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,53 @@
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+1024*1024)",
"storage_tdb_internal.internal_size" : "(32*1024)",
"storage.storage_type" : "TDB_INTERNAL"
},
"UHURU_RAVEN": {
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"],
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.network-default-interface-type" : "WIFI",
"target.components_add" : ["WIFI_ESP32", "FLASHIAP"],
"target.bootloader_img" : "bootloader/mbed-bootloader-stm32f767-internal_flash-no_rot-v4.1.2.bin",
"target.header_offset" : "0x18000",
"target.app_offset" : "0x18400",
"target.restrict_size" : "0xE8000",
"esp32.wifi-debug" : false,
"esp32.wifi-en" : "PB_12",
"esp32.wifi-io0" : "PB_13",
"esp32.wifi-tx" : "PB_14",
"esp32.wifi-rx" : "PB_15",
"esp32.provide-default" : true,
"update-client.bootloader-details" : "0x8005d30",
"update-client.application-details" : "(MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS + MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-address" : "(MBED_ROM_START + (MBED_ROM_SIZE/2))",
"update-client.storage-size" : "((MBED_ROM_SIZE/2) - MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-locations" : 1,
"update-client.storage-page" : 1,
"update-client.firmware-header-version" : "2",
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
"storage.storage_type" : "TDB_INTERNAL",
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START + 32*1024)",
"storage_tdb_internal.internal_size" : "(32*2*1024)"
},
"NUCLEO_F767ZI": {
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"],
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.network-default-interface-type" : "ETHERNET",
"target.bootloader_img" : "bootloader/mbed-bootloader-stm32f767-internal_flash-no_rot-v4.1.2.bin",
"target.header_offset" : "0x18000",
"target.app_offset" : "0x18400",
"target.restrict_size" : "0xE8000",
"update-client.bootloader-details" : "0x8005d30",
"update-client.application-details" : "(MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS + MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-address" : "(MBED_ROM_START + (MBED_ROM_SIZE/2))",
"update-client.storage-size" : "((MBED_ROM_SIZE/2) - MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-locations" : 1,
"update-client.storage-page" : 1,
"update-client.firmware-header-version" : "2",
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
"storage.storage_type" : "TDB_INTERNAL",
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START + 32*1024)",
"storage_tdb_internal.internal_size" : "(32*2*1024)"
}
},
"config": {
Expand Down

0 comments on commit 0ab340e

Please sign in to comment.