控制Fujitsu Softune调试器

发布于 2024-07-05 07:26:18 字数 90 浏览 5 评论 0原文

有没有办法用其他应用程序(例如Eclipse)控制Fujitsu Softune调试器? 我考虑发送 Softune 文档中提到的命令并解析输出,但也欢迎其他方法。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

昇り龍 2024-07-12 07:26:18

有针对eclipse的插件; 文件名为“FujitsuF2MC16_1.0.1.jar”,请在此页面上查找:

http://www.fujitsuf2mc16_1.0.1.jar mikrocontroller.net/topic/70413

在 eclipse 中编译和调试。

希望这可以帮助。

There is pluging for eclipse; file name is "FujitsuF2MC16_1.0.1.jar", look for it on this page:

http://www.mikrocontroller.net/topic/70413

Complile en debug in eclipse.

Hope this helps.

时光病人 2024-07-12 07:26:18

控制 Fujitsu Softune 调试器是什么意思?

如果您想要使用新编译的 .abs 文件启动调试会话,则可以执行以下操作。

在 Eclipse 环境中添加一个按钮或快捷方式来调用 make 实用程序来进行 debug:。 您的 makefile 将具有如下条目:

debug: $(make_vars)
# start debugger
make -f$(make_vars) -f$(make_dir)/$(cfg) cfg="$(cfg)"   debug_session

debug_session 的 make 条目中,您输入如下内容:

echo UPDATING SOFTUNE-3 PROJECT FOR  DEBUGGING;\
$(subst \,/,$(DIR_SOFTUNE_WORKBENCH))/bin/Fs907s.exe softune/E7x_proj.wsp    2>/dev/null;

我希望这有用。

What do you mean by controlling the Fujitsu Softune debugger?

If what you want to do is to start a debugging session with your freshly-compiled .abs file, you can do the following.

In the Eclipse environment add a button or shortcut to call the make utility to make a debug:. Your makefile would have an entry like:

debug: $(make_vars)
# start debugger
make -f$(make_vars) -f$(make_dir)/$(cfg) cfg="$(cfg)"   debug_session

In the make entry for debug_session you put something like:

echo UPDATING SOFTUNE-3 PROJECT FOR  DEBUGGING;\
$(subst \,/,$(DIR_SOFTUNE_WORKBENCH))/bin/Fs907s.exe softune/E7x_proj.wsp    2>/dev/null;

I hope this was useful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文