Trying to change modes on GPIO pin from input w/EXTI to timer capture. It appears to change modes, but will not capture timer. Any advice?
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_7); //PA7 is no longer GPIO interrupt sourceHere is my code to go into timer mode:/*ReConfigure GPIO pin : PtPin */ GPIO_InitStruct.Pin = Vib_In_Pin; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; GPIO_InitStruct.Pull ...