This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Debugger is disconnecting abruptly without quit command

Hello All,

We are trying to do automation to run the tests using debugger. But when we run debugger using script.ds (have load and run commands). After run command it is disconnecting abruptly. Need a solution to run the script and disconnects when it hit quit command.

script.ds

load myexample.axf

run

Thanks

Parents
  • How are you using the script? It should be a debug initialization script, not a target initialization script, such as:

    You can put 'quit' in the script if you wish, for example:

    load myexample.axf
    run
    pause 10s
    quit
    

Reply
  • How are you using the script? It should be a debug initialization script, not a target initialization script, such as:

    You can put 'quit' in the script if you wish, for example:

    load myexample.axf
    run
    pause 10s
    quit
    

Children