Skip to content

Add Seeed Wio 3G support #86

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 2 commits into from
Jan 28, 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 @@ -28,6 +28,7 @@ Board | Connectivity | Storage for credentials and
`ST NUCLEO_L4R5ZI` | Wi-Fi ESP8266 | Internal Flash | Build-only
`Nuvoton NUMAKER_IOT_M487` | 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
`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

Expand Down
Binary file not shown.
29 changes: 29 additions & 0 deletions mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,35 @@
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+4*1024*1024)",
"storage_tdb_internal.internal_size" : "(2*24*1024)",
"storage.storage_type" : "TDB_INTERNAL"
},
"WIO_3G": {
"target.features_add" : ["LWIP", "STORAGE", "BOOTLOADER"],
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
"target.device_has_remove" : ["SERIAL_FC"],
"target.network-default-interface-type" : "CELLULAR",
"target.components_add" : ["FLASHIAP"],
"target.bootloader_img" : "bootloader/mbed-bootloader-wio_3g-internal_flash-no_rot-v4.1.2.bin",
"target.header_offset" : "0x8000",
"target.app_offset" : "0x8400",
"target.restrict_size" : "0xF4000",
"nsapi.default-cellular-plmn" : 0,
"cellular.use-apn-lookup" : false,
"cellular.debug-at" : false,
"lwip.ipv4-enabled" : true,
"lwip.ethernet-enabled" : false,
"lwip.ppp-enabled" : true,
"lwip.tcp-enabled" : true,
"lwip.pbuf-pool-size" : 16,
"lwip.mem-size" : 12500,
"update-client.bootloader-details" : "0x08005ee8",
"update-client.application-details" : "(MBED_ROM_START + MBED_BOOTLOADER_SIZE)",
"update-client.storage-address" : "(MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS+MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-size" : "(1024*1024-MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
"update-client.storage-page" : 1,
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+1024*1024)",
"storage_tdb_internal.internal_size" : "(32*1024)",
"storage.storage_type" : "TDB_INTERNAL"
}
},
"config": {
Expand Down