用于微芯片 pic32 的 Node.js
我知道 lua 正在微芯片 PIC32 上工作,我想知道 node.js(服务器的 javascript)是否也可以在它上工作,或者 lib 对于 PIC32 来说是否太大或太慢。
I know lua is working on microchip PIC32 and I wonder if node.js (a javascript for server) could work on it too or if the lib will be too big or too slow for a PIC32.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑到 80MhZ 的处理器能力和 128Kb 的 RAM 大小:否。
Nodejs 本身的二进制文件比这要大得多,所有依赖项都被忽略了(想想 openssl 和 al c-libraries 节点依赖于......)。
结论:node.js 太大,PIC32 太慢。
Considering the processor power of 80MhZ and the RAM size of 128Kb: no.
The binary of nodejs itself is much larger than that, all dependencies left out (think of openssl and al c-libraries node depends on...).
Conclusion: node.js is too big and PIC32 is too slow.