This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Reading .hex file

Hi,
I am a newbie. I want to read a .hex file written for Stm32f103c cortex m3. Is there any way to read ?

Parents
  • English C language? C is a programming language - while the keywords and standard library symbol names are english words, that is the end of the similarities between C and english.

    Sorry, but a hex file don't contain any information about the original source code.

    The compiler/linker converts from C into machine instructions for the processor. The hex file is a text representation of the raw data to program into the processor. No symbol names exists. No relationships what are functions what are loops etc.

Reply
  • English C language? C is a programming language - while the keywords and standard library symbol names are english words, that is the end of the similarities between C and english.

    Sorry, but a hex file don't contain any information about the original source code.

    The compiler/linker converts from C into machine instructions for the processor. The hex file is a text representation of the raw data to program into the processor. No symbol names exists. No relationships what are functions what are loops etc.

Children