We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.