Starts to debug your program from the current instruction.
go [nowait | <timeout_s>]
<none>
Runs the default thread. The command may wait for a thread break event before returning, depending on the settings config runControlSync and config autoThreadSwitch.
nowait
Returns immediately without waiting for a thread break event.
<timeout_s>
Maximum number of seconds to wait for a thread break event. Can be set to nowait .
The following table lists and defines examples of the go command.
| Command | Description |
|---|---|
| go | Runs the default thread. |
| go nowait | Runs the default thread without waiting for a thread break event. |
| go 5 | Runs the default thread. If config runControlSync is enabled, then the command will wait for a thread break event for a maximum of 5 seconds. |