This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Chipcon cc1010 transever with MCU

using a chipcon cc1010 transever with MCU
Keil IDE, The setup:
INT_ENABLE(INUM_RF, INT_ON);
INT_GLOBAL_ENABLE(INT_O);
ENTER_IDLE MODE();
while(1);

... ... ...

void rf_isr (void) interrupt INUM_RF {
INT_ENABLE(INUM_RF, INT_OFF);
INT_SETFLAG(INUM_RF, INT_CLR);

... ... ...

//verify packet contents

... ... ...

INT_ENABLE(INUM_RF, INT_ON);
return;
}//end isr rf I get error C132: 'interrupt':not found in formal parameter list
where can i find this parameter list??
please help.... Calvin.

Parents
  • why do you stuff your ISR with calls?. That is deterimental to the health of your procuct.

    why do you initilaize in an ISR? how is the ISR going to be called if the I/O is not initialized?

    why do you retype instead of cut-and-paste. If there is a typo in your program, it will be lost in the post, or vv.

    where is INUM_RF defined

    Erik

Reply
  • why do you stuff your ISR with calls?. That is deterimental to the health of your procuct.

    why do you initilaize in an ISR? how is the ISR going to be called if the I/O is not initialized?

    why do you retype instead of cut-and-paste. If there is a typo in your program, it will be lost in the post, or vv.

    where is INUM_RF defined

    Erik

Children