控制Fujitsu Softune调试器
有没有办法用其他应用程序(例如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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有针对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.
控制 Fujitsu Softune 调试器是什么意思?
如果您想要使用新编译的 .abs 文件启动调试会话,则可以执行以下操作。
在 Eclipse 环境中添加一个按钮或快捷方式来调用 make 实用程序来进行
debug:
。 您的 makefile 将具有如下条目:在
debug_session
的 make 条目中,您输入如下内容:我希望这有用。
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:In the make entry for
debug_session
you put something like:I hope this was useful.