This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I configured port 2.4 for GPIO, it is currently hooked up to a button.
P2SEL &= ~BIT4; // Set P2.4 as GPIO
P2DIR &= ~BIT4; // Set P2.4 as input
P2IE |= BIT4;
P2IES |= BIT4;
On the ISR, I count the number of times the button has been pressed and I seem to be needing some debouncing. How do I do that? This is the ISR code
#pragma vector=PORT2_VECTOR
__interrupt void Port_2(void){
switch( P2IV ){
case P2IV_NONE: break;
case P2IV_P2IFG0: break;
case P2IV_P2IFG1: break;
case P2IV_P2IFG2: break;
case P2IV_P2IFG3: break;
case P2IV_P2IFG4:
count++;
break;
case P2IV_P2IFG5: break;
case P2IV_P2IFG6: break;
case P2IV_P2IFG7: break;
}
Hello. You can try setting a flag in the interrupt is triggered, indicating that the button has been activated. In the same interrupt, enable a timer (timer A, timer B, watchdog ...) and disable the interrupt request for this port.
In the main body of your code execution, control the flag, so that when you go to check the execution status of wait timer. After the lapse of time, go back to check the status of P4.2.
It may seem unnecessarily complicated, but this way you can keep running more useful code.
Debouncing time, is assigned to the timer, is normally used between 500 and 700 milliseconds.
Daniel Garcia1 said:#pragma vector=PORT2_VECTOR
__interrupt void Port_2(void){
switch( P2IV ){
case P2IV_NONE: break;
case P2IV_P2IFG0: break;
case P2IV_P2IFG1: break;
case P2IV_P2IFG2: break;
case P2IV_P2IFG3: break;
case P2IV_P2IFG4:/* Here, activate a flag, setting up a timer and disable the port interrupt */
count++;
break;
case P2IV_P2IFG5: break;
case P2IV_P2IFG6: break;
case P2IV_P2IFG7: break;
}
I hope I have been helpful.
Hola. Puedes probar estableciendo una bandera que se active en la interrupción, indicando que el botón a sido activado. En la misma interrupción, activas un temporizador (timer A, timer B, watchdog...) y finalmente inhabilitas la solicitud de interrupción para ese puerto.
En el cuerpo de ejecución principal de tu código, controlas la bandera, para que cuando se active la ejecución pase al estado de esperar el temporizador. Una vez transcurrido el lapso de tiempo, vuelves a controlar el estado de P4.2.
Puede parecer innecesariamente complicado, pero de esta forma puedes seguir ejecutando mas código útil.
El tiempo de debouncing, es el que se asigna en el temporizador, normalmente se utiliza entre 500 y 700 milisegundos.
Espero haber sido de ayuda.
**Attention** This is a public forum