You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My company is an Arduino partner and we are working on a project for a client given to us by Arduino.
I was advised by an Arduino Solutions Architect, my company's contact to Arduino, to post this issue here so it can be escalated internally.
If it belongs in a different repo, such as the Arduino mbed OS repo or the ArduinoIoTCloud repo, please let me know.
Description of issue
Using the Portenta H7 and Cat.M1 shield, I cannot reliably connect to the Arduino Cloud. I am certain that the Cat.M1 connection works; If I use the bare <GSM.h> library, I can connect to the network and even ping and receive responses from different websites such as "www.example.com".
However, if I use this library to connect to the Arduino IoT cloud, I cannot established a secure connection, usually failing with the error codes:
MQTT_ERROR -2 and TLS_ERROR -31.
I have attached two sketches and some serial logs that demonstrate what I've mentioned above.
gsm_sketch.ino
This sketch and log demonstrate that I can connect to the cellular network. This tells me that my configuration of bands, APN, etc. is correct and that the module is indeed functioning.
The corresponding log is gsm_sketch.log
gsm_cloud_sketch.ino
This sketch demonstrates that I can establish a connection to the Cat.M1 network, but cannot connect to the Arduino IoT cloud.
It shows the error codes mentioned above.
The corresponding logs are gsm_cloud_sketch.log and gsm_cloud_sketch2.log
Note: sometimes the NTP time sync succeeds, and sometimes it fails.
Note: Every once in a blue moon this same sketch succeeds, but the connection is dropped within two minutes. I've attached an image showcasing the connection time given by the Arduino IoT cloud portal.
An issue not shown in these logs is that sometimes the device hangs without restarting. There is no hardfault, probably gets caught in a loop somewhere.
Another issue in this sketch and the gsm_sketch.ino is that the cellular connection is always established on the last retry, which has a 32 second wait period. This means that the watchdog on the ArduinoCloud instance (which has a window of 30 seconds) MUST be disabled in order to get the device to connect to the network. However, if it is disabled, the device will periodically hang.
@pennam I tried both of the PRs and the issue was not fixed. In fact, the PRs make it so that we wait for Device Ready event, and as soon as the 10th retry expires, I get a message that the Modem is powered and ready, right before the code resets it. This means I cannot connect even to the cellular network.
Looking through the PRs themselves, they seem like they add a series of mechanisms to continue retrying the connection to the cellular network. However, that was never the problem. I could connect to the cellular network, but not to the Arduino cloud.
Regarding the watchdog what is your RSSI value? My board with an RSSI of -51 connects to the networks at the third attempt without triggering the watchdog. If your modem takes more time to connect to the network this commit arduino/ArduinoCore-mbed@1cc6e3c should limit the maximum wait time to 8s avoiding the watchdog reset.
Let me know if you need some support in testing this changes.
My company is an Arduino partner and we are working on a project for a client given to us by Arduino.
I was advised by an Arduino Solutions Architect, my company's contact to Arduino, to post this issue here so it can be escalated internally.
If it belongs in a different repo, such as the Arduino mbed OS repo or the ArduinoIoTCloud repo, please let me know.
Description of issue
Using the Portenta H7 and Cat.M1 shield, I cannot reliably connect to the Arduino Cloud. I am certain that the Cat.M1 connection works; If I use the bare <GSM.h> library, I can connect to the network and even ping and receive responses from different websites such as "www.example.com".
However, if I use this library to connect to the Arduino IoT cloud, I cannot established a secure connection, usually failing with the error codes:
MQTT_ERROR -2 and TLS_ERROR -31.
I have attached two sketches and some serial logs that demonstrate what I've mentioned above.
gsm_sketch.ino
This sketch and log demonstrate that I can connect to the cellular network. This tells me that my configuration of bands, APN, etc. is correct and that the module is indeed functioning.
The corresponding log is gsm_sketch.log
gsm_cloud_sketch.ino
This sketch demonstrates that I can establish a connection to the Cat.M1 network, but cannot connect to the Arduino IoT cloud.
It shows the error codes mentioned above.
The corresponding logs are gsm_cloud_sketch.log and gsm_cloud_sketch2.log
Connection time of device
Hardware
gsm_sketch.ino and log
gsm_sketch.log
gsm_cloud_sketch.ino
gsm_cloud_sketch.log
gsm_cloud_sketch2.log
The text was updated successfully, but these errors were encountered: