2018-10-12 07:20 AM
I will like to generate a 22 Mhz square wave by using internal clock. I have tried to use TIM3 to trigger ON OFF a GPIO pin PE9 , but i only get 800khz ++ . Anyone can help?
2018-10-12 08:12 AM
Don't be using interrupts. The TIM hardware is capable of toggling the pin or driving in a 50/50 PWM mode at rates which should exceed 22 MHz.
The real issue will be that you will need to run the H7 at an integer multiple of 22 MHz (say 396 MHz)
2018-10-12 09:13 PM
Sorry I in new beginner in STM32H743 MCU. May you give a example how to driving in a 50/50 PWM mode?
2018-10-13 08:21 AM
use master clock out, or pwm function for it.
2018-10-13 08:27 PM
master clock out possible to get square wave ? i tried it before , but only can get a sin wave.
2018-10-22 06:32 PM
I able to solve the issue now. Thanks for the help.