Way to automatically powercycle if can't connect to mesh network?

A lot of times the Xenons would reconnect just fine but a lot of times some or all of them would not.

It seemed to me that after the Boron would reset or loose it's cellular connection for a min and then reconnect that the Xenon's would not get updated on something and then would start flashing Green until reset manually. I created the code I shared with you to reset them without touching them and it always worked.

I have not tested with any of the last 5 Device OS software releases so I was hoping that issue would have been fixed by now but you may be seeing the same thing.

2 Likes

You’re welcome. One recommendation I would make for someone moving from Python to embedded C++ is to think of your code as a process and not a script. Scripting encourages things like delays and linearly dependent paths, whereas a process needs to maximize value out of system resources (like time & memory) and needs to be able to self-manage. You can then think of your smaller system components (functions, classes, blocks of code) kind of like sub-processes. Think, “what are the conditions where this needs to be running?” and “what is the priority of doing this relative to other things?”.

Think of it like asynchronous code where somethings are linearly processed but other things require checking in to see if the result is available or if a state has changed outside of your control. Doing these things will help you properly modularize your code and reduce unnecessary dependancies.

Using classes and functions to formalize interfaces where information and other dependencies are shared is a great way to keep things organized. Be careful with global variables and where you use them. Debugging complex interdependent embedded code is a PITA, so breaking things down into units and also running the units in independent ways whenever possible will save you a lot of headache.

Welcome to C++!

1 Like

I may have spoke too soon.

I’m pushing mass OTA updates to all of the edge devices, and it takes 5+ minutes for them all to reconnect. That is definitely taking longer than I was expecting.

Yea, it’s always been slow to OTA Xenons.

1 Like

How long does it take your for the device to reconnect after the update?

I just did another large push, and that was at least 10 minutes. I just left with some still trying to connect. I’ll come back and see if they sorted themselves.

Didn’t really test very much after a OTA update since when I was testing the OTA success rate was no where close to 100%. Hoping that has improved some since I was testing.

Does the MESH Publish & Subscribe still work even though it’s flashing green?

Good question, I need to check

Yea, usually the Xenon’s would connect to the MESH network just fine even with the flashing green LED status which just means the Xenon’s do not have a direct Internet connection through the Boron or Argon.

As long as you have that MESH connection you should be able to send a publish to reset them via code which for me would always bring the Xenon’s back online to a breathing green status.

2 Likes

I just wrote a simple heartbeat pub/sub to ping the edge devices.

  • Gateway publishes every 3 minutes
  • Edges listen

It appears that does get the newly updated devices to breathing/connected again dramatically faster.

1 Like

Are you seeing timeouts when you do bulk deploys? I’m getting 1 or 2 timeouts out of the 50 when I do bulk update over this 1 gateway.

@emile Remember this post was back in May and in the days of 0.8.0-RC.26 etc. with OS 1.4.2 it is much, much better.

Seeing what you are trying to do; I have a gateway command that if I need to OTA a sleepy endnode (which is only Mesh network) will queue a command (Mesh publish) to the endnode that when it wakes for a regular check-in will receive the command and set itself to receive updates and Particle.connect() after the update it will reset and it is back to Mesh network only operation. It is slow though and updating 50 endnodes will take quite a while!

2 Likes

Nice, I never did automate the system.reset() function but it’s nice to hear you accomplished that.

If you can share that code to accomplish that I’m sure others may find it useful.

I’m not doing bulk deploys, haven’t played with the Gen3 devices in a few months due to moving and work taking all my focus.