nikouz
Newbie level 6
Hi all
I am new as you already know. Doing lecel 6 in automation & electronics. I am using MPLABX and XC8. The PIC we working on is 16F88 or 16F1829(i know they are ages back but use them only for the MPLAB) personaly i run all our LAB exercises on curiosity board with 16F18446.
Before upload codes and fault pics and makes everyone crazy i will ask a question: Can we have an interrupt to execute code with __delay_ms() function. For being
more accurate i am typing a simple code as example:
Thank you for your time
I am new as you already know. Doing lecel 6 in automation & electronics. I am using MPLABX and XC8. The PIC we working on is 16F88 or 16F1829(i know they are ages back but use them only for the MPLAB) personaly i run all our LAB exercises on curiosity board with 16F18446.
Before upload codes and fault pics and makes everyone crazy i will ask a question: Can we have an interrupt to execute code with __delay_ms() function. For being
more accurate i am typing a simple code as example:
for(i=0; i<5; i++){
RB1 = 1;
__delay_ms(15000);
RB1 = 0;
__delay_ms(15000);
}
Thank you for your time
Last edited by a moderator: