MKL03Z8 Sleep Current too high

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

MKL03Z8 Sleep Current too high

501件の閲覧回数
micaelsantos
Contributor II

I've been trying to get a MKL03Z8 device to enter low power mode with the code attached, but I can't get less than 192uA. Looking at the datasheet the VPLS mode should be around 2.2uA. I already tried disabling clocks, seeing if there are any floating pins but no luck so far.

What could be the source of this high consumption? I'm running out of ideas to try. Is there any simple code example where I can get the specified currents in the datasheet? That way I could see what I was doing wrong.

I've tried looking into the example on the SDK but it didn't help much. This product is meant to be used with batteries sleeping currents can be a deal breaker.

 

Thanks in advance for the help

Original Attachment has been moved to: Test.zip

ラベル(1)
0 件の賞賛
2 返答(返信)

372件の閲覧回数
micaelsantos
Contributor II

I already found the problem after some research here and there. There is a bug on the microcontroller related to the RTC mentioned on the errata. So after POR reset we need to do the code bellow

SIM->SCGC6 |= SIM_SCGC6_RTC_MASK;

RTC->TSR = 0x00;
SIM->SCGC6 &= ~SIM_SCGC6_RTC_MASK;

Maybe it saves someone in the future :smileyhappy:

0 件の賞賛

372件の閲覧回数
mjbcswitzerland
Specialist V

Hi

One reason for high consumption is floating inputs - make sure that you either drive unused pins or switch internal pull-ups on them. Also ensure not to leave peripheral inputs floating (again it is best to switch a pull-up on such inputs).

In case of SW difficulties there is a complete solution (including automatic switching between power modes to optimise consumption and wake ups from modules or pins) at the links below.
The KL03 link includes a FRDM-KL03 application which allows switching between modes in order to measure the current which achieves about that specified in the documents.

Regards

Mark

Kinetis for Professionals: http://www.utasker.com/kinetis.html
KL03: http://www.utasker.com/kinetis/FRDM-KL03Z.html
LLWU: http://www.utasker.com/kinetis/LLWU.html

0 件の賞賛