2023-06-28 12:41 AM
2023-06-28 06:00 AM
Very easy, and in a lot of ways. For one... set up a UART for baud rate 9600. Transmit a 8-bit character and enable interrupt for TX completion (or poll). It will trigger in 0.96 ms. And so on and so on.
2023-06-28 01:30 PM
Why?
Without a TIM, or just without using the Interrupt it can optionally generate?
You can free-run most TIM, there are TIM without pins. You can read a value, advancing in micro-seconds.
You could use the DWT CYCCNT and observe processor cycles.
2023-06-28 04:09 PM
Do you consider the SYSTICK as a timer? It does exactly what you want without using a TIM timer.