STM32H723ZG AZURE RTOS - Hard Fault Error Regarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-11-27 5:45 AM - last edited on ‎2023-11-27 6:16 AM by STTwo-32
As we are using STM32H723ZG-CT6 for our Medical project.
We are using STM's Complement to STMH7 series - Azure RTOS for our project.
We were runs totally 8 threads, during the running time of threads Hard fault error is coming and our controller stops run, and hangs upto we hit reset again.
We can't able to find the solutions yet, please guide us to solve this issue.
where we want to look either RTOS related things or Some Hardware related things to solve this issue.
- Labels:
-
STM32H7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-11-27 6:40 AM
while(1) loops are not going to give you any information you can act upon
Use standard methods to debug and diagnose what code and register combinations are causing the Hard Fault. Inspect the faulting C code in the context you've dumped from the registers. Work backward from invalid pointers, or corrupt stacks to causes.
https://github.com/cturvey/RandomNinjaChef/blob/main/KeilHardFault.c
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-11-27 8:09 PM
Thanks for the reply. I will Check and Update soon
