2020-08-25 12:58 AM
Hello, please be warned, I am ultra new to STM32 mikrocontrollers (student).
I watched several hours of tutorials and now I am starting my first steps in programming. I am using the CubeMX to set up the code.
Unfortunately, I can´t get the USART1 running. I do not know if I configured the pins in CubeMX incorrectly or if I forgot something in the code (most of the code was generated by CubeMX). I took some screenshots and hope they provide enough information for you.
What does the warning "Partly disabled conflict with: PB3 mapped with SYS_JTDO-SWO" mean?
Kind regards
René
Solved! Go to Solution.
2020-08-25 06:15 AM
How do you know it's not working? ASCII characters 1 through 10 aren't printable characters. Try sending a string such as "Hello world".
> What does the warning "Partly disabled conflict with: PB3 mapped with SYS_JTDO-SWO" mean?
It means you can't enable something because a pin is already being used. Ignore it.
2020-08-25 06:15 AM
How do you know it's not working? ASCII characters 1 through 10 aren't printable characters. Try sending a string such as "Hello world".
> What does the warning "Partly disabled conflict with: PB3 mapped with SYS_JTDO-SWO" mean?
It means you can't enable something because a pin is already being used. Ignore it.
2020-08-25 11:33 AM
Thank you! It had been working, indeed, I just sent the wrong characters.