STM32CubeMonitor does not show the self-defined variables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-21 12:59 PM
I have integrated the .elf file in the STM32CubeMonitor, but it does not show me the self-defined variables. I tried different variables like
volatile uint32_t a = 3;
volatile uint8_t b = 3;
int c = 3;
Does someone have an idea what i did wrong?!
Solved! Go to Solution.
- Labels:
-
STM32CubeMonitor
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-24 4:04 AM
Hello @Roman REITER​
Only global static variables are displayed in the list.
You can check their availability in the symbol file.
Note that unused variable will not be displayed as compiler removes them for optimization reason.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-24 4:04 AM
Hello @Roman REITER​
Only global static variables are displayed in the list.
You can check their availability in the symbol file.
Note that unused variable will not be displayed as compiler removes them for optimization reason.
