Question
STLUX 385 - GPIO interrupt.
Posted on October 21, 2014 at 11:25
Hi,
I have problem with gpio interrupt. I am trying configure and enable interrupt by calling function GPIO_Init(GPIO0, GPIO_PIN_0, GPIO_MODE_IN_FL_IT) but without success. In interrupt handler function INTERRUPT_HANDLER(PORT2_IRQHandler,5) I am calling GPIO_WriteReverse(GPIO0, GPIO_PIN_2) and it is not working. When I put GPIO_WriteReverse(GPIO0, GPIO_PIN_2) in main loop, it works and PIN_2 is toggled. So I configured PIN_2 correctly. In STM8 I found EXTI_SetExtIntSensitivity(...) function. It has not representation in stlux library. Do you have any idea why INTERRUPT_HANDLER(PORT2_IRQHandler,5) not occur? How I must to do the correct configuration?