zynq-rs/openocd/gdb-zynq-commands.gdb

33 lines
325 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
2020-03-06 18:37:15 +08:00
#shortcut to load
def l
load
end
2020-01-15 05:07:19 +08:00