pelion-example-common
Dependencies: ublox-at-cellular-interface ublox-cellular-base
Revision 13:f5b874c31495, committed 2019-09-26
- Comitter:
- fahimalavi
- Date:
- Thu Sep 26 16:23:46 2019 +0500
- Parent:
- 12:dd17519b5e30
- Child:
- 14:034e2e950470
- Commit message:
- Reverting back to changeset 11 to support C030_R412M
Changed in this revision
--- a/bootloader/bootloader_app.json Thu Jul 04 14:47:10 2019 +0500
+++ b/bootloader/bootloader_app.json Thu Sep 26 16:23:46 2019 +0500
@@ -79,6 +79,22 @@
"update-client.application-details": "(MBED_CONF_APP_FLASH_START_ADDRESS + 64*1024)",
"application-start-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + 65*1024)",
"max-application-size" : "DEFAULT_MAX_APPLICATION_SIZE"
- }
+ },
+ "UBLOX_C030_R41XM": {
+ "target.components_add" : ["SD"],
+ "flash-start-address" : "0x08000000",
+ "flash-size" : "(1024*1024)",
+ "nvstore.area_1_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 2*(128*1024))",
+ "nvstore.area_1_size" : "(128*1024)",
+ "nvstore.area_2_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 1*(128*1024))",
+ "nvstore.area_2_size" : "(128*1024)",
+ "update-client.storage-address" : "(64*1024*1024)",
+ "update-client.storage-size" : "(2*1024*1024)",
+ "update-client.storage-locations" : 1,
+ "update-client.firmware-header-version": "2",
+ "update-client.application-details": "(MBED_CONF_APP_FLASH_START_ADDRESS + 64*1024)",
+ "application-start-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + 65*1024)",
+ "max-application-size" : "DEFAULT_MAX_APPLICATION_SIZE"
+ },
}
}
Binary file bootloader/mbed-bootloader-UBLOX_C030_R412M.bin has changed
--- a/main.cpp Thu Jul 04 14:47:10 2019 +0500
+++ b/main.cpp Thu Sep 26 16:23:46 2019 +0500
@@ -22,6 +22,12 @@
#include "FATFileSystem.h"
#include "LittleFileSystem.h"
+#ifdef TARGET_UBLOX_C030_R41XM
+#include "UbloxATCellularInterface.h"
+#endif
+
+#define PIN "0000"
+
// Default network interface object. Don't forget to change the WiFi SSID/password in mbed_app.json if you're using WiFi.
NetworkInterface *net = NetworkInterface::get_default_instance();
@@ -131,7 +137,28 @@
// Connect to the Internet (DHCP is expected to be on)
printf("Connecting to the network using the default network interface...\n");
+#ifdef TARGET_UBLOX_C030_R41XM
+ net = new UbloxATCellularInterface();
+
+ if (((UbloxATCellularInterface*)net)->init(PIN)) {
+
+ if ( (((UbloxATCellularInterface*)net)->is_registered_csd() || ((UbloxATCellularInterface*)net)->is_registered_psd() || ((UbloxATCellularInterface*)net)->is_registered_eps()) ) {
+ printf("De-registering...\n\n");
+ ((UbloxATCellularInterface*)net)->nwk_deregistration();
+ }
+
+
+ if (((UbloxATCellularInterface*)net)->set_modem_rat(UbloxATCellularInterface::GPRS_EGPRS)) {
+ printf("GPRS_EGPRS RAT configured\n");
+ }
+
+ if (((UbloxATCellularInterface*)net)->reboot_modem()) {
+ printf("Rebooting modem\n");
+ }
+ }
+#else
net = NetworkInterface::get_default_instance();
+#endif
nsapi_error_t net_status = NSAPI_ERROR_NO_CONNECTION;
while ((net_status = net->connect()) != NSAPI_ERROR_OK) {
--- a/mbed-os.lib Thu Jul 04 14:47:10 2019 +0500 +++ b/mbed-os.lib Thu Sep 26 16:23:46 2019 +0500 @@ -1,1 +1,1 @@ -https://github.com/ARMmbed/mbed-os/#51d55508e8400b60af467005646c4e2164738d48 +https://github.com/ARMmbed/mbed-os/#73f096399b4cda1f780b140c87afad9446047432
--- a/mbed_app.json Thu Jul 04 14:47:10 2019 +0500
+++ b/mbed_app.json Thu Sep 26 16:23:46 2019 +0500
@@ -2,9 +2,11 @@
"target_overrides": {
"*": {
"target.components_remove" : ["FLASHIAP"],
+ "target.extra_labels_remove" : ["PSA"],
"platform.stdio-baud-rate" : 115200,
"platform.stdio-convert-newlines" : true,
"mbed-trace.enable" : null,
+ "mbed-cloud-client.external-sst-support" : null,
"nsapi.default-wifi-security" : "WPA_WPA2",
"nsapi.default-wifi-ssid" : "\"SSID\"",
"nsapi.default-wifi-password" : "\"Password\""
@@ -51,6 +53,31 @@
"target.bootloader_img" : "bootloader/mbed-bootloader-UBLOX_C030_U201.bin",
"target.header_offset" : "0x10000",
"target.app_offset" : "0x10400"
+ },
+ "UBLOX_C030_R41XM": {
+ "target.features_add" : ["STORAGE", "LWIP"],
+ "target.components_add" : ["SD"],
+ "target.network-default-interface-type" : "CELLULAR",
+ "lwip.ipv4-enabled" : true,
+ "lwip.ethernet-enabled" : false,
+ "lwip.ppp-enabled" : true,
+ "lwip.tcp-enabled" : true,
+ "mbed-trace.enable" : false,
+ "device-management.flash-start-address" : "0x08000000",
+ "device-management.flash-size" : "(1024*1024)",
+ "device-management.sotp-section-1-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 2*(128*1024))",
+ "device-management.sotp-section-1-size" : "(128*1024)",
+ "device-management.sotp-section-2-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 1*(128*1024))",
+ "device-management.sotp-section-2-size" : "(128*1024)",
+ "update-client.application-details" : "(MBED_CONF_APP_FLASH_START_ADDRESS + 64*1024)",
+ "update-client.storage-address" : "(64*1024*1024)",
+ "update-client.storage-size" : "(2*1024*1024)",
+ "update-client.storage-locations" : "1",
+ "target.features_add" : ["BOOTLOADER"],
+ "target.bootloader_img" : "bootloader/mbed-bootloader-UBLOX_C030_R412M.bin",
+ "target.header_offset" : "0x10000",
+ "target.app_offset" : "0x10400",
+ "platform.default-serial-baud-rate" : 115200
}
},
"config": {
--- a/simple-mbed-cloud-client.lib Thu Jul 04 14:47:10 2019 +0500 +++ b/simple-mbed-cloud-client.lib Thu Sep 26 16:23:46 2019 +0500 @@ -1,1 +1,1 @@ -https://github.com/ARMmbed/simple-mbed-cloud-client/#2ad31604eb91b1facc11b2f9d1ba4e54a80d1384 +https://github.com/ARMmbed/simple-mbed-cloud-client/#eadf19d642431cf534c3a70b9c72f97ed5b0dd7c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ublox-at-cellular-interface.lib Thu Sep 26 16:23:46 2019 +0500 @@ -0,0 +1,1 @@ +https://developer.mbed.org/teams/ublox/code/ublox-at-cellular-interface/#aef4a3de0de3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ublox-cellular-base.lib Thu Sep 26 16:23:46 2019 +0500 @@ -0,0 +1,1 @@ +https://developer.mbed.org/teams/ublox/code/ublox-cellular-base/#e67d3d9d2e7e