Extracts a segment from the hex file.

Inputs

Name

Type

Optional/Required

Description

file

string

required

Path to the input hex file.

address

string

required

Address of the segment.

description

string

optional

Description for this field.

Outputs

Name

Type

Optional/Required

Description

file

string

required

Path to the file where to save the extracted segment.

description

string

optional

Description for this field.

Example

{
"schema-version": 1.0,
"content": [
{
"name": "Shift command example",
"description": "Shifts a hex segment to a secondary address",
"enabled": true,
"commands": [
{
"command": "shift",
"inputs": [
{
"description": "CM33 Secure + CM33 Non-Secure application",
"file": "rram_3.hex",
"address" : "0x32030000"
}
],
"outputs": [
{
"description": "CM33 Secure + CM33 Non-Secure application shifted to secure region",
"address": "0x3202A000",
"file": "shifted_rram_3.hex"
}
]
}
]
}
]
}