用于 PIC32 微控制器的 Ruby
是否有现有的库可以用 Ruby 为 PIC32 编写代码?
目前我一直在用 C 编写代码来执行任务,但我更喜欢使用 Ruby。
谢谢, 安迪
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有现有的库可以用 Ruby 为 PIC32 编写代码?
目前我一直在用 C 编写代码来执行任务,但我更喜欢使用 Ruby。
谢谢, 安迪
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我怀疑是否有一个现有的库可以完成该任务,但应该可以(肯定不是没有一些努力)扩展 Metasm< /a> 为您的处理器包含一个新的汇编器后端。它还包括一个 C 解析器/编译器。
编辑:我刚刚意识到您正在该平台上寻找 Ruby 解释器,我简直不敢相信它的存在。
I doubt that there is an existing library for that task, but it should be possible (surely not without some effort) to extend Metasm to include a new assembler backend for your processor. It also includes a C parser/compiler.
EDIT: I just realized you are looking for a Ruby interpreter on that platform, which I hardly can believe exists.
我也怀疑 Ruby on Iron 是否存在,但如果错了就好了。 :)
如果您的 pic32 可以处理运行 Ruby 的操作系统,那么这可能是一个选择。否则,您也许能够在本地运行的 Ruby 中对许多算法进行原型设计,然后在 PIC32 上将它们转换为 C。
I also doubt that Ruby on iron exists, but it would be nice to be wrong. :)
If your pic32 can handle an OS that would run Ruby, that might be an option. Otherwise you may be able to prototype a lot of your algorithms in locally run Ruby and then translate them to C on the PIC32.
可能太晚了,但是根据这个链接,mruby可以在pic32上运行
https://github.com/mruby/mruby
Probably too late, but according to this link, mruby can run on pic32
https://github.com/mruby/mruby