Skip to content

Commit 42769d3

Browse files
committed
Add Seeed Wio BG96 support
1 parent 5a01231 commit 42769d3

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Board | Connectivity | Storage for credentials and
3131
`Nuvoton NUMAKER_IOT_M487` | Wi-Fi ESP8266 | SD card (NUSD) | Build-only
3232
`Nuvoton NUMAKER_IOT_M263A` | Wi-Fi ESP8266 | SD card (NUSD) | Build-only
3333
`Seeed ARCH_MAX` | Ethernet | SD card | Build-only
34-
`Seeed Wio 3G` | Cellular | Internal Flash | Build-only
34+
`Seeed WIO_3G` | Cellular | Internal Flash | Build-only
35+
`Seeed WIO_BG96` | Cellular | Internal Flash | Build-only
3536
`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
3637
`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
3738
`Uhuru UHURU_RAVEN` | Wi-Fi (ESP32) | Internal Flash | Build-only

mbed_app.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,34 @@
526526
"storage_tdb_internal.internal_size" : "(32*1024)",
527527
"storage.storage_type" : "TDB_INTERNAL"
528528
},
529+
"WIO_BG96": {
530+
"target.features_add" : ["LWIP", "STORAGE", "BOOTLOADER"],
531+
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
532+
"target.network-default-interface-type" : "CELLULAR",
533+
"target.components_add" : ["FLASHIAP"],
534+
"target.bootloader_img" : "bootloader/mbed-bootloader-wio_3g-internal_flash-no_rot-v4.1.2.bin",
535+
"target.header_offset" : "0x8000",
536+
"target.app_offset" : "0x8400",
537+
"target.restrict_size" : "0xF4000",
538+
"nsapi.default-cellular-plmn" : 0,
539+
"cellular.use-apn-lookup" : false,
540+
"cellular.debug-at" : false,
541+
"lwip.ipv4-enabled" : true,
542+
"lwip.ethernet-enabled" : false,
543+
"lwip.ppp-enabled" : true,
544+
"lwip.tcp-enabled" : true,
545+
"lwip.pbuf-pool-size" : 16,
546+
"lwip.mem-size" : 12500,
547+
"update-client.bootloader-details" : "0x08005ee8",
548+
"update-client.application-details" : "(MBED_ROM_START + MBED_BOOTLOADER_SIZE)",
549+
"update-client.storage-address" : "(MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS+MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
550+
"update-client.storage-size" : "(1024*1024-MBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE)",
551+
"update-client.storage-page" : 1,
552+
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
553+
"storage_tdb_internal.internal_base_address": "(MBED_ROM_START+1024*1024)",
554+
"storage_tdb_internal.internal_size" : "(32*1024)",
555+
"storage.storage_type" : "TDB_INTERNAL"
556+
},
529557
"UHURU_RAVEN": {
530558
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"],
531559
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],

0 commit comments

Comments
 (0)