Teensy 3.1 current drawn

Status
Not open for further replies.

yair

New member
Hi, I was looking at the site's table for current drawn. https://www.pjrc.com/teensy/low_power.html

I noticed there is no column for the teensy 3.1

I am using this library https://github.com/duff2013/LowPower_Teensy3 to implement hibernate mode.

I was wondering how I might discern how much current is drawn while my teensy 3.1 is hibernating and how much is drawn while it is running.

My teensy 3.1 is in a circuit with an SD card adapter and a string potentiometer. Is their a way to figure out how much current the full circuit draws?

I have tried to use a multimeter in series to measure current, but for some reason I can't get any reading at all.

Thank you in advance for any help you can offer.
 
I was wondering how I might discern how much current is drawn while my teensy 3.1 is hibernating and how much is drawn while it is running.
in hibernate will draw about 250uA, while running depends what cpu speed your at.

My teensy 3.1 is in a circuit with an SD card adapter and a string potentiometer. Is their a way to figure out how much current the full circuit draws?
measure with your mulitimeter in series at the power supply source.

I have tried to use a multimeter in series to measure current, but for some reason I can't get any reading at all.
check your fuses.

For a true measurement of a system under "load", for such small currents you'd need something like this:

http://www.adafruit.com/products/882
I want one of those too, I can't find anyone that has them in stock if anyone knows please let me know!
 
in hibernate will draw about 250uA, while running depends what cpu speed your at.

How do you know this? can I see a source?

I was just researching this and I found this thread:
http://forum.pjrc.com/threads/23660...-Battery-Operation-Solutions-For-The-Teensy-3
this part is what i saw:

"Sleep Mode: Very Low Leakage Stop (VLLS3) -- Hibernate
Downloaded program: Hibernate_Simple @ 24 Mhz
Hibernate current = 6.636 ma. <------<<<<<
Note: Installed reset handler patch
Note: Bootloader chip is not in hibernate mode
Note: Printing over USB when going into hibernate
keeps the current consumption at 12.566 ma. ???
Note: Disable USB printing will make hibernate work????"


thoughts?
 
cause i wrote the library you are using, and I have measured it many times along with many other people. Read that whole thread.
 
I am using
LP.Hibernate(RTCA_WAKE, 5);
rather than
LP.Hibernate(LPTMR_WAKE, 5000);

Can you explain the difference between these two things.
 
Status
Not open for further replies.
Back
Top