智能车制作

标题: API 调试好的 [打印本页]

作者: 嵌入式系统设计    时间: 2012-5-10 21:16
标题: API 调试好的
#include <hidef.h>      /* common defines and macros */
#include "derivative.h"      /* derivative-specific definitions */

     
        void API_Init(void)
{
  CPMUAPICTL = 0x00;                                      
  CPMUAPIR = 0x00ff;                           
  CPMUACLKTR = 0x00;
  CPMUAPICTL_APIE=1;                                      
CPMUAPICTL_APIF=1;                     
  CPMUAPICTL_APIFE=1;                       
}
void main(void) {
  /* put your own code here */
  
     
            API_Init();   
            DDRA=0XFF;
            PORTA=0x00;
EnableInterrupts;
            
  for(;;) {      
    _FEED_COP(); /* feeds the dog */
  } /* loop forever */
  /* please make sure that you never leave main */
}
#pragma CODE_SEG __NEAR_SEG NON_BANKED
  
  interrupt 59 void API_ISR(void)
   {
   DisableInterrupts;
        
          PORTA=~PORTA;
      CPMUAPICTL_APIF=1;
  
     // EnableInterrupts;
   
   }

作者: B-Boy_Chao    时间: 2012-5-27 18:18
好像进不了中断诶!
作者: aoxiang2    时间: 2012-5-28 12:47
中断多少ms的?

作者: 学做飞思卡尔    时间: 2012-5-30 14:28
新手能弱弱的问一下,API是干什么用的吗?
作者: Think_p    时间: 2012-7-15 14:42
LZ 进不了中断怎么解决呀???
作者: 嵌入式系统设计    时间: 2012-7-15 15:26
怎么会进不了中断??




欢迎光临 智能车制作 (http://dns.znczz.com/) Powered by Discuz! X3.2