Detect GPIO Low/High state without using interrupt or busy/wait strategy
Hi I want to detect a GPIO turning low/high in less than 1 mili/sec granularity.I can use an interrupt (edge) or I can busy/wait with HAL_GPIO_ReadPin which would be in 1 mili/sec granularity because of the systick.Is there any other way of doing tha...