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.

0