2022-06-24 12:58 AM
I'm using STM32H743. I'm trying to apply the following pdf but I'm having difficulties with pin settings and applying the example. I need help. THANK you
2022-06-28 03:40 AM
Thanks, Amel.
It's a pity. That AN deserves a bunch of examples, IMO.
Jan
@Amel NASRI
2022-06-28 03:45 AM
I consider your feedback, escalating it internally.
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2022-07-05 12:40 AM
Hi again, I edited the EXTI1_IRQHandler() function in my own code for my own pin, but where should I put it in main.c. I am having trouble trying to implement EXTI interrupt to autobaudrate. Has anyone dealt with autobaudrate before? Is this system a ready-to-use system? I'm trying to do it but I haven't been successful yet.
@Amel NASRI (ST Employee) can you please help?
2022-07-05 02:43 AM
> I edited the EXTI1_IRQHandler() function in my own code for my own pin, but where should I put it in main.c.
Wherever. However, you should make the name of the function matches the name in the interrupt vector table, which is usually part of the startup code.
> Is this system a ready-to-use system?
This is just an outline of one possible method. Basically, it's just about measuring duration of one bit. You can do it in any way you want, and then calculate the baudrate accordingly.
You can also use the built-in hardware autobaud of the USART, read the USART chapter in RM.
JW