Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
6 years, 6 months ago.
Operation with battery power without USB
Hi, Many thanks for all the nice demo codes. That's very helpful. I tried the "MAX32620FTHR_Pmic" and the "FuelGauge" demos. Both are working well as long as the USB power is connected. When I connect a charged LIPO battery and disconnect the USB power to the board, the board stops working. Then I press the Power button and the device starts up, but after 3 seconds, the board shuts down. Is this a kind of default mode or something? Should I configure the MAX77650 so that the board keeps running?
Thanks again, Hans-Günther
Question relating to:
2 Answers
6 years, 6 months ago.
Hi,
Take a look at the MAX32620FTHR's datasheet and the MAX77650's datasheet page 40. You can see there is a pin assigned from the MAX32620 to the Power Hold pin of the MAX77650, therefore a Digital output needs to be assign and set to ON for the PMIC to stay on. something like this:
DigitalOut pw_Hold(P2_2, POWER_HOLD_ON);
Let me know if that makes sense.
Hi Felippe, Thanks a lot. Yes that helps. It is working now. Here is the code I called at the beginning of the code:
- define POWER_HOLD_OFF 0
- define POWER_HOLD_ON 1 DigitalOut pw_Hold(P2_2, POWER_HOLD_ON);
inside my program, I can switch off the PMIC with this code (if running from Battery):
pw_Hold = POWER_HOLD_OFF;
posted by 20 May 20186 years, 6 months ago.
Hi there,
I would make sure that your USB power and battery power are providing the board with the same voltage. You can check these values using a low cost device such as a USB voltage meter.
Please let me know if you have any questions!
- Jenny, team Mbed
If this solved your question, please make sure to click the "Thanks" link below!