如何在 AVR Studio 中打开文件?

发布于 2024-07-25 01:33:20 字数 209 浏览 8 评论 0原文

我有两个 ATMEGA88(主设备和从设备)通过 I2C 发送测试[]正常工作。

工作环境:使用C的AVR Studio。

我需要的是让主机能够向从机发送指定的文件,例如mydoc.txt。

我应该使用另一个应用程序来构建 UI 吗? 如何连接不同的 IDE 并使其正常工作? 有专业人士吗? 或者示例代码?

谢谢!

I have two ATMEGA88 (master and slave) working correctly by sending a test[] via I2C.

Working enviroment: AVR Studio using C.

What I need is to allow the master be able to send a indicated file such as mydoc.txt to the slave.

Should I be using another application to build the UI? How can I connect a different IDE and make it work? Any pro? Or sample code?

Thanks!

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

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

发布评论

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

评论(2

甩你一脸翔 2024-08-01 01:33:20

为了能够将文件从一个微控制器发送到另一个微控制器,主控制器必须能够从某处读取该文件。 如果文件足够小,您可以将其捆绑到程序代码中。 更简单的方法是将二进制内容转换为 C 数组。

如果文件无法装入微控制器闪存,一种解决方案是使用外部存储设备。 另一种解决方案是主控制器通过 RS-232 与台式 PC 通信以读取文件。

AVR Studio 仅用于编程和调试。 实际动作发生在微控制器内部。

In order to be able to send a file from one micro-controller to another, the master must be able to read the file from somewhere. If the file is small enough, you could bundle it into the the program code. The easier way to do this will be to convert the binary content into a C array.

If the file can't fit into the micro-controllers flash, one solution would be to use an external memory device. Another solution would be the master controller to communicate through RS-232 with a desktop PC to read the file.

AVR Studio is only used for programming and debugging. The actual action happens inside the microcontrollers.

禾厶谷欠 2024-08-01 01:33:20

是的,谢谢吉安纳卡基斯
根据我的搜索,超级终端可能是解决这个问题的简单方法。
Labview 可能是实现该项目的另一种方法。

Yes, thanks kgiannakakis
According to my search, HyperTerminal probably will be the easy way to solve this question.
Labview might be another approach to achieve this project.

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