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.

FLASH-PROGRAMMER: srfprog command line reset on a CC26XX using the XDS200

Part Number: FLASH-PROGRAMMER

Hi,

I'm looking to do a command line reset of a CC26XX device using the XDS200. The srfprog tool that comes with the TI Flash Programmer 2 seems to enable me to do a reset when combined with an erase or a program, but not on it's own. Is there any way I can do a reset of the device from the command line using the XDS200?

Thanks,

Daniel

  • From the CLI documentation it looks like you should be able to do a srfprog.exe --reset but from what I understand a connection has to be done to the target to enable a reset meaning that you have to combine a reset with a read, write or erase command.

    From what I have been able to find out

    %SRFPROG% -t lsidx(0) -r p(0) -rs

    should be able to do a reset in combination of reading one page of the flash.
  • This isn't quite what I was hoping, but with a slight modification it will do the job. I didn't realise you could do a reset after a read! In the end I'm going with: srfprog.exe -t lsidx(0) -r addr(0,1) -rs

    Thanks very much,
    Dan