This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMDSEMU200-U: TMDSEMU200-U

Part Number: TMDSEMU200-U
Other Parts Discussed in Thread: UNIFLASH

Hello I am trying to run a cmd for uniflash to load a bin file, but every time I run my command I get that I am unable to open the file

This is the command example

dslite --mode load --config=file.ccxml [options] coff-or-binary-file1

Options:

Select text
 -c [ --config ] arg    Configuration (ccxml) file.
 -f [ --file ] arg      Elf, coff or binary file(s) to flash or verify.  To
                        specify a binary file, append ',address' after the
                        file.  This option exists only for compatibility - the
                        file to load can instead just be passed as the last
                        token on the command line.
 -t [ --timeout ] arg   Timeout in seconds, infinite if unspecified.
 -g [ --log ] arg       Enable detailed logging to the specified file.
 -r [ --core ] arg (=0) Zero based index of core to operate on.
 -h [ --help ]          Print this message.

And this is my command in cmd

C:\ti\ccs1230\ccs\ccs_base\DebugServer\bin>dslite load -c C:\Users\julioam\ti\CCSTargetConfigurations\Mutiflashing2.ccxml -f -binary-'C:\Users\julioam\ti\CCSTargetConfigurations\M1158001.V34909.bin'


DSLite version 12.3.0.3006
Configuring Debugger (may take a few minutes on first launch)...
Initializing Register Database...
Initializing: CS_DAP_0
Executing Startup Scripts: CS_DAP_0
Initializing: CORTEX_M4_0
Executing Startup Scripts: CORTEX_M4_0
GEL: CORTEX_M4_0: GEL Output:
Memory Map Initialization Complete
Connecting...
Failed: Unable to open file: -binary-'C:\Users\julioam\ti\CCSTargetConfigurations\M1158001.V34909.bin'

  • C:\ti\ccs1230\ccs\ccs_base\DebugServer\bin>dslite load -c C:\Users\julioam\ti\CCSTargetConfigurations\Mutiflashing2.ccxml -f -binary-'C:\Users\julioam\ti\CCSTargetConfigurations\M1158001.V34909.bin'

    It looks like you prepended "-binary-" before the file name. Why? This looks incorrect.

    You are also missing the load address after the binary name as mentioned in:

     -f [ --file ] arg      Elf, coff or binary file(s) to flash or verify.  To
                            specify a binary file, append ',address' after the
                            file.  This option exists only for compatibility - the
                            file to load can instead just be passed as the last
                            token on the command line.