Bin to hex
Converts binary file to hex.
Command name:
bin2hex
Inputs:
Name | Type | Optional/Required | Description |
|---|---|---|---|
file | string | required | The path to the bin file. |
offset | string, integer | optional | Starting address offset for loading bin. |
description | string | optional | Description for this field. |
Outputs:
Name | Type | Optional/Required | Description |
|---|---|---|---|
file | string | required | Path to the output hex file. |
description | string | optional | Description for this field. |
Example:
{
"schema-version": 1.0,
"content": [
{
"name": "bin2hex command example",
"description": "Converts binary image to hex",
"enabled": true,
"commands": [
{
"command": "bin2hex",
"inputs": [
{
"description": "Input bin file",
"file": "input.bin",
"offset": 0
}
],
"outputs": [
{
"description": "Output hex file",
"file": "output.hex"
}
]
}
]
}
]
}