2025-02-07 12:22 AM - last edited on 2025-02-08 09:21 AM by Andrew Neil
I have an STM32WLE5JC motherboard. I work on this board. I want to access the information of the chip used in my card and see it in live watch during debug. In other words, I want to see the information of the chip used on my motherboard live in debug mode. How can I do this?
2025-02-08 09:18 AM
If I am well understood. There are two ways to achieve it.
1. connect this device to a serial monitor via UART (for example, Arduino IDE) and observe what it does. Software uploaded on this board should, of course, write debug information to the UART.
2. debug code using STM32CubeIDE and STM32Programmer. In this case, your code should be written using STM32CubeIDE. The ST-LINK V2 device should be connected to a computer via a USB cable. Shared should be enabled on both the programmer and IDE sides.
2025-02-08 09:34 AM
@bozgan wrote:I have an STM32WLE5JC motherboard.
Please give full details - see the posting guidelines.
@bozgan wrote:I want to access the information of the chip used in my card
What "information", exactly?
@bozgan wrote:see it in live watch during debug.
In STM32CubeIDE ?
https://www.youtube.com/watch?v=Zqwq9nzTNF8&t=658s
https://wiki.st.com/stm32mcu/wiki/STM32CubeIDE:Introduction_to_STM32CubeIDE
Or, as @markpow suggested, send whatever data you require over a UART and display on any serial terminal.