From 7e12468bf218259d0e82f830a1414ff26f10ef25 Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 20 May 2019 01:21:48 +0200 Subject: [PATCH] README --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..468149e --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Debugging + +## Using the Xilinx toolchain + +Run the Xilinx Microprocessor Debugger: +```shell +/opt/Xilinx/14.7/ISE_DS/EDK/bin/lin64/xmd +``` + +Connect to target (given it is connected and you have permissions): +```tcl +connect arm hw +``` + +Leave xmd running. + +Start the Xilinx version of the GNU debugger with your latest build: +```shell +/opt/Xilinx/14.7/ISE_DS/EDK/gnu/arm/lin/bin/arm-xilinx-linux-gnueabi-gdb zc706 +``` + +Connect the debugger to xmd over TCP on localhost: +```gdb +target remote :1234 +``` + +Proceed using gdb with `load`, `c` + +## Using OpenOCD: not working +