Question
How cause a 60ms delay within a callback without using HAL-Delay()?
I want to cause a 60ms delay within a callback. I am sending data using a UART and the serial protocol requires certain delays.
I would prefer not to change the Systick priority so that means the callback has a higher priority than Systick and HAL_Delay is not available.
Anyone have any good methods for creating delays in callbacks?
