0

I have a MAX809T which partially works fine, outputting high when voltage is above the threshold after a small 1 second time delay, and outputs low when the voltage is below the threshold. It also has a hysteresis. However, when I connect a load, even a small 70mA microcontroller, the MAX809T actively pulls its output low, waits the 1 second time delay, then pulls it back up.

The battery voltage is 3.99V, and it doesn't change (to 0.01V resolution of my multimeter), and the MAX809T threshold is 3.08V.

enter image description here

I don't believe a small microcontroller can draw a large enough start-up current to drop a large LiPo cell down 1V, but even so I tried adding an electrolytic 10uF capacitor but it doesn't change this unexpected behaviour.

I even tried adding a pull-up resistor to pull the output high, but the MAX809T is actively pulling it low so this doesn't work.

I don't have any external circuitry connected to the MAX809T, just VCC and GND connected, with a multimeter measuring between RESET and GND.

  • Multimeter shows the average of a number of measurements so you may not be able to catch any sudden and temporary drops. Try with a scope instead. Also you may want to monitor the input of your supervisor IC to see if it's noisy. – Rohat Kılıç Jun 06 '23 at 10:49
  • I don't have a scope, but I will assume this is the case, as per @Spehro Pefhany's answer – UnknownDagger Jun 06 '23 at 11:18

1 Answers1

3

The MAX809 should have a small ceramic (not electrolytic) bypass capacitor (perhaps 0.1 to 1 uF) mounted very close to its supply pins.

Most likely your “70mA” microcontroller has bypass capacitors so when you close the switch there will be a negative-going transient on the power supply of tens or hundreds of microseconds which will trigger the MAX809 reset pulse (indeed, as it should). This is exactly what it is designed to do, since such a transient could cause an upset to digital circuitry.

If you want it to do something else, perhaps you could isolate the supply of the AD809 from the battery with a series resistor and provide it with a substantial bypass capacitor at the chip. Pull-up to the battery side of the series resistor. That will prevent it from detecting the disruption caused by the switch closing. An oscilloscope would be helpful in getting the numbers correct, or detailed knowledge of what is being switched. Without that it’s just guesswork, but the supply current of the AD809 is quite low, making this approach possibly feasible without too much error in the detection voltage.

Spehro Pefhany
  • 376,485
  • 21
  • 320
  • 842