2021-10-20 03:07 AM
I am experiencing a vey long external interrupt latency up to 2 microseconds.
Clock is internal PLL, 64MHz.
void HAL_GPIO_EXTI_Rising_Callback(uint16_t GPIO_Pin)
{
if (GPIO_Pin == TRIGGER_Pin)
{
__disable_irq();
LL_GPIO_ResetOutputPin(S2_GPIO_Port, S2_Pin);
__enable_irq();
}
}
how can I speed it up, I need it to be <1 microsecond
Thanks
Solved! Go to Solution.
2021-10-20 08:56 AM
2021-10-20 09:13 AM