cancel
Showing results for 
Search instead for 
Did you mean: 

Printing the chip information used on my STM32WLE5JC card to the screen

bozgan
Associate II

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?

2 REPLIES 2
markpow
Senior

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.


@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.st.com/resource/en/user_manual/um2609-stm32cubeide-user-guide-stmicroelectronics.pdf#page=173

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.