Skip to main content
Graduate II
October 17, 2024
Question

Debug Library?

  • October 17, 2024
  • 1 reply
  • 637 views

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 :)

    This topic has been closed for replies.

    1 reply

    Graduate II
    October 17, 2024

    What are we talking about here?

    Fault Handlers

    Stack/Heap walkers

    Stack Check / Depth

    Electric Fence, or malloc/free tracking and attribution?

    Graduate II
    October 17, 2024

    Stuff that gets into release builds for support staff to be able to enable, and review? Levels of diagnostic or telemetry output?

    RTOS Monitor?

    RickoAuthor
    Graduate II
    October 17, 2024

    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 :)