Problem with GPIO interrupt, MCU ignores the mode selected.
Here's my GPIO setup:/*Configure GPIO pins : P_H_IN_Pin PCA_INT_Pin P_L_IN_Pin */ GPIO_InitStruct.Pin = P_H_IN_Pin|PCA_INT_Pin|P_L_IN_Pin; GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOJ, &...