- UID
- 350367
- 性别
- 男
|
/*****************头文件****************************************/
#include /* for EnableInterrupts macro */
#include "derivative.h" /* include peripheral declarations */
/*********************变量和函数定义****************************/
void TIMER_INI(void);
int DATAH,DATAL;
/*********************主函数************************************/
void main(void) {
TIMER_INI();
EnableInterrupts; /* enable interrupts */
for(;;) {
__RESET_WATCHDOG(); /* feeds the dog */
} /* loop forever */
}
/******************定时器中断***************************************/
interrupt 10 void MTIM_ISR(void) {
PTAD_PTAD0=1;
DATAH=TPM2CNTH;
DATAL=TPM2CNTL;
} /**/
/*******************初始化函数****************************************/
void TIMER_INI(void) {
TPM2SC=0x4A;
TPM2CNTH=0x00;
TPM2CNTL=0x00;
|
|