C Standard Library not working on STM32H7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 6:33 AM
Hello,
we switched from a STM32F7 to a STM32H7, porting the program to it.
I disabled D Cache, because it wouldnt work together with the ethernet. Now we got another Problem:
-Some Funtions of the STL are working, others are not. For example mmcpy or memset is fine, TIME, localtime or Strtok is not or only partly working.
Anyone experienced this?
edit: using gcc and cubeide
- Labels:
-
STM32H7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 7:12 AM
IDEs use to have architecture-specific versions of each library. Perhaps alignment or stack size issues ?
To be honest, I haven't worked with a H7 yet. And neither with CubeIDE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 7:52 AM
Both MCUs have the same CPU core, and strtok() has no system specific code. If it has stopped working, then something is corrupting memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 7:56 AM
Okay i got the problem. but no solution its a freertos thing.
This functions only fail, when called out of a task, in initialization they work fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 8:01 AM
Could even reproduce it in a new empty CubeMx created project
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 9:32 AM
Specify "fail".
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 9:38 AM
for example malloc wont provide memory, so the pointer gets set to NULL, strtok only provides the first tokenized stringt. Calling localtime(&time) will simply produce a hardfault.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 9:48 AM
Are we sure strtok() is even thread safe?
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
‎2020-01-21 9:53 AM
its not, like malloc and free, but in the "real" application they are guarded. The problem occurs even with a single task running at highest priority and not getting preempted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-21 10:23 AM
@BengofEtech​ - Please see my web page below explaining your problem and how to fix it:
http://www.nadler.com/embedded/newlibAndFreeRTOS.html
Best Regards, Dave
@Markus GIRDLAND​ , @Camilo LEMOS​:
This is approximately the 25th thread from an ST customer impacted by this problem.
I provided ST with the solution last July...
