You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are do linux sdk development in remote machine, and your board is connect to your local PC, and you want to upload or debug freeloader to your local PC, you can do the following steps:
Assume your are using SOC=evalsoc CORE=ux900fd
run openocd -f conf/evalsoc/openocd.cfg in your local pc, make sure bindto 0.0.0.0 in openocd.cfg is uncommented
get your local pc ip, such as 192.168.43.120
In remote pc, you can do following command to upload or debug freeloader
a) upload freeloader: make SOC=evalsoc CORE=ux900fd GDBREMOTE="192.168.43.120:3333" upload_freeloader
b) debug freeloader: make SOC=evalsoc CORE=ux900fd GDBREMOTE="192.168.43.120:3333" debug_freeloader
The text was updated successfully, but these errors were encountered:
If you are do linux sdk development in remote machine, and your board is connect to your local PC, and you want to upload or debug freeloader to your local PC, you can do the following steps:
Assume your are using
SOC=evalsoc CORE=ux900fd
openocd -f conf/evalsoc/openocd.cfg
in your local pc, make surebindto 0.0.0.0
in openocd.cfg is uncommented192.168.43.120
a) upload freeloader:
make SOC=evalsoc CORE=ux900fd GDBREMOTE="192.168.43.120:3333" upload_freeloader
b) debug freeloader:
make SOC=evalsoc CORE=ux900fd GDBREMOTE="192.168.43.120:3333" debug_freeloader
The text was updated successfully, but these errors were encountered: