pyOCD icon indicating copy to clipboard operation
pyOCD copied to clipboard

Support for multiple concurrent subcommands

Open BogdanTheGeek opened this issue 8 months ago • 1 comments

It would be really useful to be able to run the remote probe server at the same time as the gdb server in the same command. Right now I have to do all of these in separate processes:

pyocd server
pyocd gdbserver -uremote:localhost
pyocd commander -uremote:localhost
arm-none-eabi-gdb

Would be really useful if i could run the probe server and gdb server at the same time like in openocd. This is to allow external programs to connect to the probe server and read memory as the target is running.

BogdanTheGeek avatar May 31 '25 21:05 BogdanTheGeek

When running gdbserver subcommand you can already use an additional command line option --probe-server to enable the probe server in addition to the GDB server.

pyocd gdbserver --probe-server

All available gdbserver options can be listed with pyocd gdbserver --help command.

TeoMahnic avatar Jun 20 '25 13:06 TeoMahnic