forked from M-Labs/zynq-rs
Astro
d11e581862
still panics, leading to a DataAbort |
||
---|---|---|
.cargo | ||
openocd | ||
src | ||
Cargo.lock | ||
Cargo.toml | ||
README.md | ||
armv7-none-eabihf.json | ||
build.rs | ||
default.nix | ||
link.x | ||
qemu.gdb | ||
runner.sh | ||
shell.nix |
README.md
Build
nix-shell --command "cargo xbuild --release"
Debug
Using the Xilinx toolchain
Tested with the ZC706 board.
Run the Xilinx Microprocessor Debugger:
/opt/Xilinx/14.7/ISE_DS/EDK/bin/lin64/xmd
Connect to target (given it is connected and you have permissions):
connect arm hw
Leave xmd running.
Start the Xilinx version of the GNU debugger with your latest build:
/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:
target remote :1234
Proceed using gdb with load
, c
Using OpenOCD
Running on the ZC706
nix-shell --command "cargo xbuild --release"
openocd -f openocd/zc706.cfg
Running on the Cora Z7-10
nix-shell --command "cargo xbuild --release --no-default-features --features=target_cora_z7_10"
openocd -f openocd/cora-z7-10.cfg