哪位大哥能告诉我如下在skyeye下单步执行ucos
哪位大哥能告诉我如下在skyeye下单步执行ucos 主要是如何单步调试自己写的应用程序 Of cource.Firstly load your image to skyeye,that is to run the following command in skyeye:target sim
load
Then you will notice your start address, for example ,0x2000
Then type command to set breakpoint in skyeye:
break *0x2000
Then run image in skyeye :
run
Then you can step execute by type command "si" in skyeye. You can look up gdb command help to get more tips about step debug. Of cource.Firstly load your image to skyeye,that is to run the following command in skyeye:
target sim
load
Then you will notice your start address, for example ,0x2000
Then type command to set breakpoint in skyeye:
break *0x2000
Then run image in skyeye :
run
Then you can step execute by type command "si" in skyeye. You can look up gdb command help to get more tips about step debug.
页:
[1]