PIC PICC 的奇怪问题

2020-02-09 11:25发布

今天发现一个奇怪的问题。
使用PIC16F722  这个IC出来没多久 ,需要使用PICC 9.65的编译器。

程序用SIM仿真发现总是在中断中跑,于是我关了GIE 同时查看特殊功能寄存器,发现不可能进中断,

在中断中通过判断标准位
进了这个
if(TMR2IE&TMR2IF)// PWM TIME INT    CHANGE DUTY
      {TMR2IF=0;
       TMR2IE=0;
         CCPR2L=PWM_duty;
      }

可是这个怎么可能一直在中断中跑。

还有哪位知道Startup.as这个文件有没有必要要。怎么去掉。我非常的怀疑是它在搞鬼

同事也怀疑编译器的问题 。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
12条回答
yklstudent
1楼-- · 2020-02-09 17:02
 精彩回答 2  元偷偷看……
lixin91985
2楼-- · 2020-02-09 20:12
楼上的 ,即使不是也不会出现这样的现象。


后来调试发现 问题出在这里


T0CS=0;

这个东西无论你以什么方式置0 都会出现问题。不操作这一位就正常了。
millwood0
3楼-- · 2020-02-10 00:48
"后来调试发现 问题出在这里 "

this example demonstrates two things:

1) what you think is wrong may not be wrong: you were adamant about the problem being in the isr when in fact it is somewhere else. it brings to question a) your approach / thought process; and b) your credibility.
2) many times, you have to help others help you. in this case, posting your complete code would have been helpful.

"这个东西无论你以什么方式置0 都会出现问题。不操作这一位就正常了。"

maybe you should look into the datasheet to see what it does and what its default (POR/Reset) values are and see if that's consistent with what you want to do.

programming is not a trial-and-error process, unless you want to remain clueless.
lixin91985
4楼-- · 2020-02-10 01:57
楼上 。哈哈  我英文不是很好 。


通过注释发现 TOCS 不能置1,。
该位复位是1,TO做外部计数器,现在我需要做定时器,不然我也不会去管他。


DATASHEET上没有关于这位操作的特别说明,以前也用过很多次,都没有发现问题 ,

我不敢坚信是编译器的问题,但是现在通过了解,我无法找到别的地方的问题。


另有谁知道这段代码是什么含义,


PICC的启动文件中的 。

; jump to start
        movlw        start >>8
        movwf        PCLATH
        goto        start & 0x7FF | (reset_vec & not 0x7FF)



        psect        init
start
_exit
lixin91985
5楼-- · 2020-02-10 05:38
还是不死心 ,重新开了个项目,很简单的 。

#include "Main_heard.h"

void main(void)
{
//T0IF=0;
  T0IE=1;//open int  need alawys open
  PSA=0; PS1=0;  PS0=0;
  T0CS=0;
TMR0=0;
  
PEIE=1;
GIE=1;
while(1);
}


/****************ISR******************************/
static void interrupt ISR(void)                        // Here be interrupt function - the name is unimportant.
{
  if(T0IE&T0IF)// SYSTEMTICK 4.096MS int  need scan led an count or decount
       {T0IF=0;

         }

if(RBIE&RBIF)//partB int need scan key
        {RBIF=0;

         }

if(TMR1GIE&TMR1GIF)//ccp INT  read perid
        {TMR1GIF=0;

        }

if(TMR2IE&TMR2IF)// PWM TIME INT    CHANGE DUTY
      {TMR2IE=0;
      //
      }

}

以上为全部源代码 。


发现只要T0溢出,以后怎么搞都逛if(TMR2IE&TMR2IF)// .


实在是很郁闷。

怎么会出这样的事呢 ?
l4157
6楼-- · 2020-02-10 10:34
 精彩回答 2  元偷偷看……

一周热门 更多>