Questions tagged [hex-file]

.hex Intel HEX, text representation of binary data, usually for EPROM memory images for microcontrollers.

Text file format to represent binary data. Details on Wikipedia: https://en.wikipedia.org/wiki/Intel_HEX

21 questions
0
votes
0 answers

Load the Audio file in exernal memory using stm32

I want to move audio files in bin format to external flash. I used incbin for this. The audio files were present in .map file but in .hex file these data were missing. Give me a solution for this issue.
0
votes
1 answer

Printing Lines from Intel HEX Record File

I'm trying to send the contents of an Intel Hex file over a Serial connection to a microcontroller, which will process each line sent and program them into memory as needed. The processing code expects the lines to be sent as they appear in the Hex…
Zantaros
  • 3
  • 2
0
votes
1 answer

Fixing checksum issues on intel HEX files

I have made the following intel hex file snippet to test with a couple 8051 processor simulators: :1000F5007002501F500CED2562FDEE3561FEEF35A7 :1001050060FFE56233F562E56133F561E56033F57E One I used is located here: http://www.jroweb.de/8051/ From my…
0
votes
1 answer

how to read non-zero part of intelhex file in python using IntelHex package

I'm trying to read part hex data from an intelhex file using Intelhex package of python 3.6. Using following code I opened the file and tried to convert to dictionary if it helps. ih = IntelHex("data.hex") mydict = ih.todict() now I have an…
1chenar
  • 197
  • 1
  • 15
0
votes
1 answer

Convert hex to bin file with correct address offset

I want to convert a hex file into a bin file. I know that this question is already asked several times but my problem is, that no tool can give me the absolute starting address of the hex file. For example, if I use the "hex2bin"-Tool…
-4
votes
1 answer

how to convert .c file to .hex file and load it on AVR microcontroller?

I need a compiler to convert .c files to .hex file in command line and I need information about how its work thanks a lot
1
2