Is there a way to control the Fujitsu Softune debugger with an other application(e.g. Eclipse)? I think about sending the command mentioned in the documentation of Softune and parse the output, but also other approaches are welcome.
felix0322
问问题
1073 次
2 回答
2
eclipse有插件;文件名为“FujitsuF2MC16_1.0.1.jar”,请在此页面上查找:
http://www.mikrocontroller.net/topic/70413
在 Eclipse 中编译和调试。
希望这可以帮助。
于 2009-06-25T10:28:55.970 回答
1
控制 Fujitsu Softune 调试器是什么意思?
如果您想要使用新编译的 .abs 文件启动调试会话,您可以执行以下操作。
在 Eclipse 环境中添加一个按钮或快捷方式来调用 make 实用程序来制作debug:
. 您的 makefile 将具有如下条目:
debug: $(make_vars)
# start debugger
make -f$(make_vars) -f$(make_dir)/$(cfg) cfg="$(cfg)" debug_session
在 make 条目中为debug_session
您输入如下内容:
echo UPDATING SOFTUNE-3 PROJECT FOR DEBUGGING;\
$(subst \,/,$(DIR_SOFTUNE_WORKBENCH))/bin/Fs907s.exe softune/E7x_proj.wsp 2>/dev/null;
我希望这很有用。
于 2009-06-15T23:40:34.787 回答