Electron stopped working?

I guess that explains why it behaved that way when running Norwegian blue. Should I connect the 3.3v from the Photon, to Vbatt on the Electron to power it up when running Norwegian blue?
Thanks so much for pointing my error out. Have a great day.

Try attaching the Li-Po battery.

3 days ago my Electron developed the same problem, dim D7 Led, multicolor LED OFF. Tried usb Norwegian Blue fix and I was unsuccessful. Now I seemed to have lost my Photon as it will . no longer connect to the internet. I was running 0.6.2 when it lost the bootloader. I order a ST-Link V2 Programming Unit mini STM8 STM32 Emulator Downloader M89 Top ST JTAG tool.
Would you please point me to the procedure and bootloader file for using the JTAG tool.
Thanks so much.

@ovro67 would you please contact https://support.particle.io for help on restoring your Photon and Electron back to a factory state?

Also, it sounds like you said your Electron was initially connected to USB for Serial prints, and your LiPo battery disconnected? Please be advised that most USB ports cannot handle the up to peak 2A currents that the modem requires, and will cause a brown out at the electron. To remedy this, you should keep the LiPo battery attached. Do you remember what steps took place between the time things were functioning and not? Were you reprogramming anything (dfu/ota/y-modem), and what kinds of power/flash functions were you using if any (sleep/eeprom/etc..)?

1 Like

Hi there

I have an electron in the field that stops working with no RGB led and a dimly lit Blue D7 LED, HOWEVER a reset is bringing this back to life at the moment.

Relevant Info.

  1. I have 2 of these devices running the same code and only one of them is doing this.
  2. There is no Lipo battery attached we are supplying the device from our own carrier board via VIN at 5V and 2A.
    3, The power supply is very steady (120Ahr @ 12V) External Solar Regulator charging the batteries.
  3. Iā€™m using 0.7.0-rc.3 firmware
  4. Sometimes it runs for 2 weeks, yesterday it ran for 7 hours.

I have a few questions.
1, If this is a user code fault, shouldnā€™t it blink the RGB red with the SOS, or white, or some colour, or anything other than off?
2. Has anyone seen this fault (no RGB LED, and dim D7 - recovered by a reset)
3. I have the application WDT running and itā€™s not resetting the device.
4. Has anyone got a nice function to see processor utilisation?
5. What does the Electron do with USB Serial printf if the USB is not connected? does it skip the section of code or still go through the process of printing it? - I wonder if I have too much serial debug slowing it down in some wierd way.

Thanks and Regards

Marshall

@marshall, the "no RGB LED and dim D7 LED" is the classic indicator for a low voltage condition leading to a wiping of parts of the flash, typically the DCT area. The 0.7.0-rc.3 system firmware includes an auto-healer for this so this is why hitting reset brings it back to life.

The thing with the onboard LiPo is that it can supply high peak current for the modem. This means fast response (ie rise time) to current demand. You need to make sure your 5v regulator can supply (at least) 2 amps of current with a fast rise time. You should over-spec the regulator so it doesn't get hot and runs well within its operating range. What regulator are your using?

The best thing you can do is setup logging on the device to get a detailed output of the system activities.

The print occurs as if the port was connected but it doesn't go anywhere. You could qualify your prints with isConnected() so that you skip the print when a host is not connected.
:wink:

2 Likes

Thanks for the fast reply.

Our regulator is a Active Semi ACT4060A we chose this as we are able to put a 12V Solar panel directly on it without it blowing up. the O/C voltage of a solar panel approaches 22V. (anyway we donā€™t use a solar panel directly in this case)

I had a quick look at the datasheet but didnā€™t see any demand curves vs rise time on them. Iā€™ll put a battery on and see if that results in any improvements, its a really easy fix.

Iā€™ll report back on the results.

I like the idea about the isConnected() function you mentioned. I have my debug out already in a function so itā€™s easy to add in just the one spot.
here is my debug function if anyone else wants it, it prints the line number and the function name as a prefix, then nicely aligns the message.
It takes standard printf arguments (or no arguments) so it is easy to replace existing Serial.printlnf etc with it.

#define TRACE_PORT Serial
#define OPITO_DEBUG(fmt, ...) WITH_LOCK(Serial) TRACE_PORT.printlnf("%-4d:%-30s> " fmt, __LINE__, __func__, ##__VA_ARGS__);

hereā€™s how to use it.

OPITO_DEBUG("callback rx-d %s", str);

Regards
Marshall

hi bko i have same condition one of electron as you stated
what post should i follow

followed this with no luck

get same error

SWD Fault error
Please double check the wiring, then try again.
Do you have a dead device and wish to continue? [y,N]:

@viraj what is the symptom of the electron? Are the LEDs lighting up?

Do you have a dead device and wish to continue? [y,N]: after pressing on y the target electron D7 led lights solid blue, which was previously dim blue
and same error prints on hyperterminal
SWD Fault error

What happens when you attach the Lipo battery? Can you take a photo?

when you attach the Lipo battery?

ā€“> it remains same solid blue no RGB led lights

I have now managed to brick an electron as well :pensive:

I was powering it through a lab power pack on the Vin pin and no battery. I turned the power supply off and when I turned it back on it was bricked. Seems like it was probably the slowly dropping voltage of the PSUā€¦ Maybe reproducible by just using a large cap on the Vin lines and then removing power.

I am running 0.6.0 firmware.

Could have been a power spike from turning on the power supply also.

Just checking in here to say that I also have managed to kill a few Electrons over the months by letting the battery run empty. I tried every suggested fix but couldnā€™t fix any of them.

By looking at the posts in this thread, the best practice to avoid this is to not allow a brownout to occur. Unfortunately, I use a LiSOCl2-battery setup which doesnā€™t have the typical discharge curve that a LiPo has, making the voltage level hard to monitor. Essentially, it goes from a steady 3.6V almost straight to a brownout.

I guess I may just have to accept killing a few Electrons every now and then

i have lost a few myself. iā€™m not an electrical engineer, but in my somewhat educated opinion i think there could be some type of voltage protection, such as a reset circuit using something like,
https://www.maximintegrated.com/en/products/power/supervisors-voltage-monitors-sequencers/MAX6326.html
not so much integrated into the electron although that would be a nice gesture considering the cost of an under voltage incident to the user. but, more like something inline between the battery and the electron which in theory would just shut off power at the point voltage drops to a specific point. i have never lost an electron by just cutting power immediately such as disconnecting the usb power line with no battery attached.

This has just now happened to me again with my dev Electron, and after stuffing around trying to fix for half an hour it I read somewhere on these forums to logout/re-login from particle CLI before pushing new firmware via DFU.

That actually seemed to work for me first time I tried (with a bit of charge in that battery that is).

Could be a coincidence but thought Iā€™d share my experience here.

Reading this thread, Iā€™m at a crossroad in terms of deciding whether to deploy Electrons with the battery or without. My use case is trucks. The power source will be USB as the primary.

PRO: My thought is that having the battery in place provides a great second power source / backup, thus a vote FOR keeping the battery.

CON: My other thought is that if/when the customer needs to reset the Electron (it will be in an enclosure - hard to access) they simply unplug the USB which will drop power, then plug it back in. This is a vote against keeping the battery.

CON: Finally, in this thread we read that allowing the battery to completely discharge has potentially negative consequences. It will happen in the real world and I canā€™t have Electrons coming back that are damaged from a full battery discharge.

Thatā€™s one vote to deploy with the battery and two votes not to.

Can your power supply handle the peak current demands of the Electron? What type of Electron 2G/3G/LTE? What prevents the Electron from losing power unexpectedly (such as a vehicle battery change) (which is one of the likely causes of the corrupted device issue)? No solutions hereā€¦ just more questions.

1 Like