_frank_ Community Member

  • Member since Feb 1st 2023
Last Activity

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • _frank_ -

    Replied to the thread Debugging with OpenOCD and GDB Server.

    Post
    > Is it possible to have a BIN file downloaded into flash as part of the debug process via gdb/OpenOCD, but then load the elf file subsequently via gdb? I think this doesn't make much sense, the *.bin and *.ELF file basically contain the same…
  • _frank_ -

    Replied to the thread [SOLVED] How to remove Library Paths from project's .elf file.

    Post
    > My colleagues need to pass the code to a fuzzing tool. Assuming you talk about what I know as obfuscator tool, I don't know what want to achieve with that step. Such a tool tries to hide certain details of the file from third parties, such as path…
  • _frank_ -

    Replied to the thread [SOLVED] How to remove Library Paths from project's .elf file.

    Post
    ELF is basically the debug format, i.e. contains all the information for debugging (with the respective flags enabled). Why not doing a post-build step, and convert the ELF output into an *.HEX or *.SREC file ? These formats contain nothing but the…