tc.c
上传用户:jndfzc
上传日期:2014-06-02
资源大小:325k
文件大小:0k
源码类别:

单片机开发

开发平台:

Others

  1. #define __TC_C
  2. #include "tc.h"
  3. void TC0_Init(void)
  4. {
  5. unsigned long a;
  6. a=*(volatile unsigned *)(TC0+TCSR);
  7. *(volatile unsigned *)(TC0+TCCMR)=0X4002;
  8. *(volatile unsigned *)(TC0+TCCCR)=0X1;
  9. *(volatile unsigned *)(TC0+TCIER)=0X10; //INT enable
  10. *(volatile unsigned *)(TC0+TCRC)=0x2710;//0X300;
  11. }