Skip to content

Commit 1af152b

Browse files
authored
Merge pull request #86 from toyowata/dev_wio_3g
Add Seeed Wio 3G support
2 parents 34e5b53 + 0e35951 commit 1af152b

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Board | Connectivity | Storage for credentials and
2828
`ST NUCLEO_L4R5ZI` | Wi-Fi ESP8266 | Internal Flash | Build-only
2929
`Nuvoton NUMAKER_IOT_M487` | Wi-Fi ESP8266 | SD card (NUSD) | Build-only
3030
`Seeed ARCH_MAX` | Ethernet | SD card | Build-only
31+
`Seeed Wio 3G` | Cellular | Internal Flash | Build-only
3132
`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
3233
`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
3334

Binary file not shown.

mbed_app.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,35 @@
380380
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+4*1024*1024)",
381381
"storage_tdb_internal.internal_size" : "(2*24*1024)",
382382
"storage.storage_type" : "TDB_INTERNAL"
383+
},
384+
"WIO_3G": {
385+
"target.features_add" : ["LWIP", "STORAGE", "BOOTLOADER"],
386+
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
387+
"target.device_has_remove" : ["SERIAL_FC"],
388+
"target.network-default-interface-type" : "CELLULAR",
389+
"target.components_add" : ["FLASHIAP"],
390+
"target.bootloader_img" : "bootloader/mbed-bootloader-wio_3g-internal_flash-no_rot-v4.1.2.bin",
391+
"target.header_offset" : "0x8000",
392+
"target.app_offset" : "0x8400",
393+
"target.restrict_size" : "0xF4000",
394+
"nsapi.default-cellular-plmn" : 0,
395+
"cellular.use-apn-lookup" : false,
396+
"cellular.debug-at" : false,
397+
"lwip.ipv4-enabled" : true,
398+
"lwip.ethernet-enabled" : false,
399+
"lwip.ppp-enabled" : true,
400+
"lwip.tcp-enabled" : true,
401+
"lwip.pbuf-pool-size" : 16,
402+
"lwip.mem-size" : 12500,
403+
"update-client.bootloader-details" : "0x08005ee8",
404+
"update-client.application-details" : "(MBED_ROM_START + MBED_BOOTLOADER_SIZE)",
405+
"update-client.storage-address" : "(MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS+MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
406+
"update-client.storage-size" : "(1024*1024-MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
407+
"update-client.storage-page" : 1,
408+
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
409+
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+1024*1024)",
410+
"storage_tdb_internal.internal_size" : "(32*1024)",
411+
"storage.storage_type" : "TDB_INTERNAL"
383412
}
384413
},
385414
"config": {

0 commit comments

Comments
 (0)