I’m currently designing a Li-Ion powered ESP32 circuit.
The ESP32 has a minimum operating voltage of 3 V. So, my instinct is to use a 3.1 V supervisor to keep the ESP32 within an acceptable range.
After the supervisor is triggered, I’d like to keep it active until the user turns the whole circuit off / on again. Without this, I’m afraid that the voltage of the Li-Ion cell might rise to the open circuit voltage, which would disable the supervisor and cause an endless loop of un-resetting / resetting.
I found this article from TI that describes how to “latch” a supervisor. At a high level, I think it makes sense. But it seems like a relatively complex approach to, at the end of the day, connect RST to MR.
So now I’m wondering — could I directly connect RST to MR, without any additional circuitry? My instinct is that, if the RST pin pulls low, it would trigger MR (which would trigger RST again, and so on), effectively keeping the supervisor in a reset state.
I’m very new to electronics, so I apologize if this is a silly question or if I’m misunderstanding any of these concepts. I think I’m missing a key piece of insight.