将.wav文件中的数据放入pic18F4550的闪存中

发布于 2024-11-09 19:15:37 字数 105 浏览 0 评论 0原文

我是硬件编程新手:我使用带有 microchip 版本 8.63 的 C 编译器的 pic18F4550。我的问题是:有人可以将 .wav 文件(二进制数据)写入 pic18F4550 的闪存吗?

I'm new at hardware programming: I work with the pic18F4550 with the C compiler from microchip version 8.63. My question is: has someone example code to write a .wav file (binary data) to the flash memory of the pic18F4550?

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

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

发布评论

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

评论(1

倚栏听风 2024-11-16 19:15:37

使用 bin2c 程序将 WAV 文件转换为 C 源文件,其中包含的数据一个 const char 数组。然后编译该文件并将其与源代码链接。您的链接器应将 const 变量放置在 PIC 上的闪存中。

Use a bin2c program to convert the WAV file to a C source file with the data contained in a const char array. Then compile and link this file with your source code. Your linker should place const variables in flash memory on the PIC.

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