pyOCD
pyOCD copied to clipboard
Support for multiple concurrent subcommands
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.
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.