LOW-POWER MODE

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

LOW-POWER MODE

635 Views
frankkong
Contributor III

Hello,

      I am using S12ZVML31. How can I enter and quit the wait/stop  mode? Any examples?

Tags (1)
0 Kudos
2 Replies

436 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hello,

To enter Stop or Wait mode use STOP or WAIT instruction.
The stop instruction is enabled if S control bit is cleared in the CCR core register.

asm ANDCC #0x7F; // Clear S bit
asm STOP;        // MCU STOP mode‍‍

For more information, please refer to CPU S12Z RM

Depending on the PSTP, OSCE bits, the MCU can enter either Full Stop mode or Pseudo Stop mode (Section 8.1.2.3, S12ZVC RM rev.1.9).

Every I-bit maskable interrupt is capable to wake up from Stop or Wait mode provided the peripheral that triggers the interrupt is active in the low power mode.

Regards,
Daniel

436 Views
frankkong
Contributor III

Thanks,

Daniel, it works.

0 Kudos