Low Power KL46Z

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Low Power KL46Z

632 Views
pierluigirosset
Contributor I

Hi Team,

We are developing a mission critical board based on a Freescale Kinetis KL46Z.
It is battery powered so the power consumption should be as low as possible, that is overall less than 100uA.
The software environment is CodeWarrior 10.6 with PE and MQXLite 1.1.1.
The application is not simple enough in order to allow to wake up just by means of a reset, but we need to wake up also by interrupts like INT_LLW and INT_LPTimer.
The application should wake up every 125 milliseconds and handle also a serial protocol on two UARTs.
The idea was to have two clock configurations, one for normal RUN where to use all devices as the UARTs, and one to STOP in VLPS (or other mode).
The second configuration for low power is entered in the IDLE of MQXLite, and it should exit for any interrupt like INT_LLW and INT_LPTimer.

The PE has generated the following functions:

  • Cpu_SetClockConfiguration(CPU_CLOCK_CONFIG_1)
  • Cpu_SetOperationMode(DOM_STOP)

  For entering the VLPS mode, we call them in the same order as above in the IDLE task. 

Hereafter the problems:

  1. it doesn't wake up on INT_LPTimer interrupt, but just for INT_LLW
  2. with or without Cpu_SetClockConfiguration(), the consuption is exactly the same, in other words the normal STOP and the VLPS seems to be identical (please note we set to Auto the "VLP mode entry" in Clock configuration 1)
  3. is it strictly necessary to use MQX full in order to work with the low power features?
  4. is it possible to have what we want, that is an average consuption less than 100uA / 150uA with that MCU?

What we are doing wrong or we should do?

Thanks a lot in advance.

Best Regards,

Pierluigi.

Labels (1)
0 Kudos
1 Reply

456 Views
Hui_Ma
NXP TechSupport
NXP TechSupport

Hi,

1> It need to check the Processor Expert component setting with related INT_LPTimer & INT_LLW, the LPTimer interrupt should wake up the core from VLPS mode.

2> For the STOP and VLPS mode, the MCG module is static and the MCGIRCLK and PLL are based on register setting if still work with low power mode. If there disable the MCGIRCLK and PLL in low power mode, there without any different for ClockConfiguration to enter into STOP or VLPS mode.

3> There without restricted requirement to use MQX with the low power mode. We have the Low Power mode example for bare-metal project.

Please download related reference code from here.

For KL46 doesn't provide Low Power demo based on Processor Expert tool, customer could refer KL25 PE low power demo here, which should with similar setting.

4> It need to test/measure the power consumption with RUN and VLPS, then to calculate the total power consumption during a period.

Wish it helps.


Have a great day,
Ma Hui

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos