2024-10-17 01:22 PM
Hi,
So far I have been writing my own debug library but there might be much better one out there.
Does anybody know of any well known, perhaps feature-rich, debug libraries which I could use to either improve mine or use directly?
Thank you :)
2024-10-17 02:07 PM
What are we talking about here?
Fault Handlers
Stack/Heap walkers
Stack Check / Depth
Electric Fence, or malloc/free tracking and attribution?
2024-10-17 02:09 PM
Stuff that gets into release builds for support staff to be able to enable, and review? Levels of diagnostic or telemetry output?
RTOS Monitor?
2024-10-17 02:29 PM - edited 2024-10-21 10:25 AM
Thank you @Tesla DeLorean
I am putting a lot of time into improving my code quality especially for products to be released, so pretty much everything you listed, but - from your list - the order of priority I would say is:
Higher priority I am working on:
1) Stuff that gets into release builds for support staff to be able to enable, and review
2) Levels of diagnostic or telemetry output
3) Fault Handlers
Would be nice to have but less important:
4) RTOS Monitor
5) Stack/Heap walkers
Thank you :)