https://github.com/matveyt/hex2c
Convert between Intel HEX, Binary and C Include format
https://github.com/matveyt/hex2c
c intel-hex
Last synced: 11 months ago
JSON representation
Convert between Intel HEX, Binary and C Include format
- Host: GitHub
- URL: https://github.com/matveyt/hex2c
- Owner: matveyt
- License: unlicense
- Created: 2025-08-06T18:42:11.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-08-08T09:07:07.000Z (11 months ago)
- Last Synced: 2025-08-08T11:19:56.158Z (11 months ago)
- Topics: c, intel-hex
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### What is this
Tool to convert between Intel HEX, Binary and C Include format.
### Build
Run `make`.
### Use
```
Usage: hex2c [OPTION]... FILE
Convert between Intel HEX, Binary and C Include format.
-B, --from-binary FILE has no specific format
-H, --from-hex FILE has Intel HEX format [default]
-b, --binary Binary dump output
-c, --c C Include output [default]
-h, --hex Intel HEX format output
-o, --output=FILE set output file name
-p, --padding=NUM extra space on line
-s, --silent suppress messages
-w, --wrap=NUM maximum output bytes per line
If no --output is given then writes to stdout.
Intel HEX format is 8-bit only (64KB max).
```