I am trying to write a custom delay function in MikroC for the PIC16F882 MCU.
I want to keep checking a particular pin of MCU to see if it changed, throughout the delay function.
But the issue is, I cannot pass a pin as a parameter to a function. Is there any other way of doing the same?
The purpose of flag is to determine how long the delay should be. It would automatically be turned 0 after Timer0 overflow. I have not included that part in the code to make things simpler to understand.
My function is:
int flag = 0;
void delay(bit pin_to_check){
while(flag == 1){
if(flag == 0 || pin_to_check == 0) {
break;
}
}
}
void main(){
flag = 1;
delay(RA3_bit);
}
The compile-time error I get is:
Parameter 'pin_to_check' must not be of bit or sbit type
Since you cannot pass the bit
or sbit
as a parameter, you can either:
Case 3. is explained in this thread, and would be something like:
void delay(unsigned char *PORT, unsigned char bitNo) {
unsigned char bitMask = 0x01 << bitNo;
while (flag == 1 && ((*PORT) & bitMask) != 0)
{ }
}
// delay until bit 3 is set
delay(&PORTA, 3)