智能车制作

标题: mc9s12xs128PIT中断 [打印本页]

作者: 七月夷则    时间: 2013-7-30 11:03
标题: mc9s12xs128PIT中断

/*************************************************************/
/*                     PIT模块初始化函数                     */
/*************************************************************/
void init_PIT(){

PITMTLD0=249;     //为0通道8位计数器赋值
PITLD0=63999;     //为0通道16位计数器赋值   //(249+1)*(63999+1)=16000000个总线周期=0.5秒
PITMUX_PMUX0=0;   //第0通道使用微计数器0
PITCE_PCE0=1;     //第0通道计数器工作
PITCFLMT=0X80;    //使能周期中断定时器
PITINTE_PINTE0=1; //0通道定时器定时中断被使能
}
#pragma CODE_SEG __NEAR_SEG NON_BANKED
void interrupt  66 PIT0(void)
{     
   
       i++;
   
      if(i==2) {
       i=0;
      LEDCPU=~LEDCPU;  
      }
     PITTF_PTF0=1;
}
#pragma CODE_SEG DEFAULT

/*************************************************************/
/*                         主函数                            */
/*************************************************************/
void main(void) {
  INIT_PLL();
  LEDCPU_dir=1;
  init_PIT();
EnableInterrupts;
  for(;;) {  
    }
  
}
这段代码简单的1s定时程序,为什么出现:Link error 1106: Object PIT_INTER not found ?怎么找不到:PIT_INTER

作者: 空相救心    时间: 2013-7-30 13:03
中断号不是66
作者: 灰原姐姐    时间: 2013-7-30 18:32
中断号不要写数,要写环境提供的宏定义。
作者: 咯咯    时间: 2013-7-31 15:42
本帖最后由 咯咯 于 2013-7-31 15:43 编辑

刚查了下codewarrior的帮助。

L1106: <Object Name> not found
[ERROR]
Description
An object referenced in the PRM file or in the application is not found anywhere in the application. This message is generated in following cases:
An object moved to another section in the OBJECT_ALLOCATION block is not found anywhere in the application (WARNING).
An object placed at an absolute address in the OBJECT_ALLOCATION block is not found anywhere in the application (ERROR).
An object specified in a VECTOR or VECTOR ADDRESS command is not found anywhere in the application (ERROR).
No startup structure detected in the application (WARNING).
An object (function or variable) referenced in another object is not found in the application (ERROR).
An object (function or variable) specified in the ENTRIES block is not found in the application (ERROR).

从以上飞思卡尔官方给出的错误解释我们可以推出,
An object specified in a VECTOR or VECTOR ADDRESS command is not found anywhere in the application (ERROR).

这个PIT0中断号确实是66而且用数字或者宏定义都是没有任何问题的。
应该是你的头文件里面未包含中断向量表,或者没有包含具有中断向量表的头文件。也很有可能是你创建工程的时候选型错误。可以尝试重新创建一个新工程或者使用以前成熟的工程再编译。

作者: 自然+和谐    时间: 2013-8-1 11:55
你把66改成什么44试试,它的中断向量好应该是44
作者: 自然+和谐    时间: 2013-8-1 12:04
我编译了一下,没出现你说的情况,是否可以考虑新建一个PROJECT
作者: 朱琳    时间: 2013-8-3 19:17
PIT0中断号是66
作者: ℡单身旅行    时间: 2013-8-5 09:16





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