2021-02-16 07:34 AM
Hello everyone, I would like to know wath's the STM32 equivalent of the serial monitor on Arduino .. Wath's the simpliest way to display integer value like temp or number with a nucleoF401re stuff ?
Thank a lot for your responses !
Solved! Go to Solution.
2021-02-16 08:13 AM
With arduino you dont have access to all the cool debugger capabilities of stm32.
You can stop the code and create halt points, thats very handy.
2021-02-16 08:04 AM
The easiest way is the virtual COM port. It tunnels the connected UART from the target (here STM32F401) via USB and makes its data available to every terminal running on the host. These data could e.g. be sent from the target UART with printf.
Regards
/Peter
2021-02-16 08:13 AM
With arduino you dont have access to all the cool debugger capabilities of stm32.
You can stop the code and create halt points, thats very handy.
2021-02-16 08:16 AM
Thank for your responses. It helps me a lot !!