optimize and TCM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-03 8:58 PM
Hi,
I'm using H723 for programming,and TCM ram is in use.when compiler optimization feature is on,code can not work.Is it not possible to use TCM while turning on optimization? or requires some setup?
Regards,
Binge
Solved! Go to Solution.
- Labels:
-
STM32H7 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-04 12:40 AM
Have a look into the (linker) generated map file to see which symbols (functions/data) are linked into this RAM sections to get an idea.
And as @Tesla DeLorean mentioned find out why your app is not running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-03 9:20 PM
Debug what's not working.
Determine if you've got code to move the data into the RAM.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-03 10:48 PM
why the usage of RAM changed after optimize on?see picture below.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-04 12:40 AM
Have a look into the (linker) generated map file to see which symbols (functions/data) are linked into this RAM sections to get an idea.
And as @Tesla DeLorean mentioned find out why your app is not running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-04 6:21 AM
Perhaps the optimizer keeps things in registers, or constant data in FLASH ?
If it's important, review the generated code/data. Start with the map and listing files.
Up vote any posts that you find helpful, it shows what's working..
