Low Power Operation on the MCF5213

- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hello All,
Can anyone provide any assistance on Low Power Operation on the MCF5213? I believe I have the registers (LPCR, LPICR, PPMRH, and PPMRL) set correctly, but I cannot find the "STOP instruction" mentioned in the "MCF5213 Reference Manual". Is there sample code available which illustrates Low Power Operation? Thank you.
gcoakley

- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
TIA

- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Here are the links, I found.
http://www.freescale.com/files/32bit/doc/app_note/AN3236.pdf
http://www.freescale.com/files/netcomm/software/app_software/code_examples/MCF5213SC.zip
The code example (power) also requires the following definitions.
#define stop_2700() asm(" stop #0x2700")
#define stop_2600() asm(" stop #0x2600")
#define stop_2500() asm(" stop #0x2500")
#define stop_2400() asm(" stop #0x2400")
#define stop_2300() asm(" stop #0x2300")
#define stop_2200() asm(" stop #0x2200")
#define stop_2100() asm(" stop #0x2100")
#define stop_2000() asm(" stop #0x2000")
-gcoakley

- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
