main.c

来自「mpc564 时钟中断 时钟中断」· C语言 代码 · 共 47 行

C
47
字号
#include "mpc555.h"

   UINT32 counter = 0 ;		// Global for ISR to hold the 
   							// number of PIT interrupts
   UINT32 loopctr = 0 ;		// Loop counter for main loop

void init555()				// Simple MPC555 Initialization
{
   USIU.SYPCR.R = 0xffffff03; // Disable watchdog timer 
   USIU.PLPRCR.B.MF = 0x009; // Run at 40MHz for 4MHz crystal
   while(USIU.PLPRCR.B.SPLS == 0);	// Wait for PLL to lock	
   UIMB.UMCR.B.HSPEED = 0;	// Run IMB at full clock speed				       
}


void initPIT() 
{
							// STEP 1: MODULE SPECIFIC INITIALIZATION
   USIU.PITC.B.PITC = 1000;	// Setup count value.
   USIU.PISCR.B.PITF = 1;	// Freeze enabled to stop PIT
   USIU.PISCR.B.PTE = 1;	// PIT enabled to start counting	  
   
							// STEP 2: LEVEL ASSIGNMENT
   USIU.PISCR.B.PIRQ = 0x80; // Level 0 PIT interrupt

							// STEP 3: ENABLE INTERRUPT
   USIU.PISCR.B.PIE = 1 ;	// Enable PIT interrupt

							// STEP 4: SET APPROPRIATE SIMASK BITS
   USIU.SIMASK.R = 0x40000000; 	// Enable level 0; others disabled
} 


main()
{
	init555();				// Perform a simple 555 initialization
	initPIT();				// Init PIT to generate interrupts
  	asm(" mtspr EIE, r3");	// FINAL STEP: SET MSR[EE], MSR[RI] BITS
   	while(1)					// Wait for PIT interrupts	
   	{
   	loopctr++;				// Increment loopctr for something to do
   	}			     
}



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?