zynq-rs/openocd/gdb-zynq-commands

29 lines
290 B
Plaintext
Raw Normal View History

2020-01-15 05:07:19 +08:00
def zynq-connect
target remote :3333
end
def zynq-fsbl-restart
mon xilinx_ps7_init
end
def zynq-restart
mon xilinx_ps7_init
2020-01-24 07:51:29 +08:00
load
2020-01-15 05:07:19 +08:00
end
# easily typed shortcuts
# device connect
def dc
zynq-connect
end
# device restart
def dr
zynq-restart
end
def dfr
zynq-fsbl-restart
end