Command-line execution - eFUSE Tool

This section describes the Command Line Interface (CLI) commands supported in the eFUSE Tool.

Command name ​​Definition and parameters Description Restriction Example
Export eFUSE Configuration ​-ExportConfig

Export eFUSE binary configuration.

Folder name/path is expected as argument.

​Requires -HeadlessTool eFUSE -HeadlessTool eFUSE -ExportConfig C:/eFUSE_Configs/eFuseCfg.bin
Include serial boot header -serial_boot

Include the serial boot header into the exported eFUSE binary configuration.

No arguments are required.

Requires -ExportConfig -HeadlessTool eFUSE -ExportConfig C:/eFUSE_Configs/eFuseCfg.bin -serial_boot
Export eFUSE configuration in ELF format -ExportELF Export eFUSE configuration in ELF format. Folder name/path is expected as argument Requires -HeadlessTool eFUSE -HeadlessTool eFUSE -ExportELF C:/eFUSE_configs/efuse_elf.elf
Examples:
  • Export eFUSE configuration based on a MEX file
    eclipsec.exe -noSplash \
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -Load /path/to/mex/file \
            -ExportConfig /path/where/to/save/file
  • Export eFUSE configuration with serial boot header based on a MEX file
    eclipsec.exe -noSplash \
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -Load /path/to/mex/file \
            -ExportConfig /path/where/to/save/file
            -serial_boot
  • Export default eFUSE configuration
    eclipsec.exe -noSplash \
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -MCU <mcu_name> \
            -SDKVersion <sdk_version> \
            -ExportConfig /path/where/to/save/file
  • Export default eFUSE configuration with serial boot header
    eclipsec.exe -noSplash \
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -MCU <mcu_name> \
            -SDKVersion <sdk_version> \
            -ExportConfig /path/where/to/save/file
            -serial_boot
  • Export eFUSE configuration in ELF format based on a MEX file
    eclipsec.exe -noSplash \
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -Load /path/to/mex/file \ 
            -ExportELF /path/where/to/save/file\
  • Export default eFUSE configuration in ELF format
    eclipsec.exe -noSplash\
            -application com.nxp.swtools.framework.application \
            --launcher.ini /path/to/S32CT/installation/tools.ini \
            -HeadlessTool eFUSE \
            -MCU <mcu_name> \
            -SDKVersion <sdk_version> \
            -ExportELF /path/where/to/save/file\