jian84000 发表于 2005-10-20 11:27:21

哪位大哥能告诉我如下在skyeye下单步执行ucos

哪位大哥能告诉我如下在skyeye下单步执行ucos

jian84000 发表于 2005-10-20 11:46:57

主要是如何单步调试自己写的应用程序

ksh 发表于 2005-10-24 12:32:27

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.

ksh 发表于 2005-10-24 12:36:02

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]
查看完整版本: 哪位大哥能告诉我如下在skyeye下单步执行ucos