commands.sh

openocd

all

Debug and program embedded systems with OpenOCD.

More info →

Options (3)

-f, --fileboolean

Attach OpenOCD session to a board with a configuration file

Example: openocd {{[-f|--file]}} {{config_file.cfg}}
-c, --commandboolean

Attach OpenOCD session to a board with configuration files and a list of commands to be executed on server startup

Example: openocd {{[-f|--file]}} {{config_file.cfg}} {{[-c|--command]}} "{{command}}"
-s, --searchboolean

Use configuration files in the specified path

Example: openocd {{[-s|--search]}} {{path/to/search}} {{[-f|--file]}} {{config_file.cfg}}

Examples (6)

Attach OpenOCD session to a board with a configuration file

openocd [-f|--file] config_file.cfg

Attach OpenOCD session to a board with multiple configuration files

openocd [-f|--file] config_file1.cfg [-f|--file] config_file2.cfg

Attach OpenOCD session to a board with configuration files and a list of commands to be executed on server startup

openocd [-f|--file] config_file.cfg [-c|--command] "command"

Use configuration files in the specified path

openocd [-s|--search] path/to/search [-f|--file] config_file.cfg

[Interactive] After OpenOCD startup, connect GDB to OpenOCD default port 3333

target extended-remote localhost

List site-wide script library

ls /usr/local/share/openocd/scripts
made by @shridhargupta | data from tldr-pages