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.
Parameter list?
Too much left out.
The water is cold.
Going under third time now.
All is lost...
. .
.
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
Erik, thanks for taking the time it was a typo that caused the error. Calvin