专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
51单片机
有没有人用 Petit FatFs文件系统
2020-01-25 15:20
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
51单片机
4410
4
4
本帖最后由 ding_ding0304 于 2013-8-15 10:59 编辑
我在stc12单片机上移植好了,但不知道怎么去操作文件?我想用它做一个基于PWM的WAV播放器。不知道怎么读取WAV音频数据?
petit_fatfs文件系统在STC12C5A60S2上移植成功(初学) :
http://www.amobbs.com/thread-5546800-1-1.html
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
FZK374470412
1楼-- · 2020-01-25 19:01
正在参考楼主前一篇帖子,等我弄好后通知楼主哈
加载中...
FZK374470412
2楼-- · 2020-01-26 00:12
大概看了一下 估计类似znfat的字节流那样处理的,比如你要将读到的字节字节送到VS1003进行播放 可以在这里设置(假设vs1003的送数据函数为SengData(uchar dat))
DRESULT disk_readp (
BYTE* buffer, /* Pointer to the destination object */
DWORD sector, /* Sector number (LBA) */
WORD sofs, /* Offset in the sector */
WORD count /* Byte count (bit15:destination) */
)
{
DRESULT res;
uint8 r1;
uint16 bc;
res = RES_ERROR;
r1 = MMC_SD_SendCommand(17, sector<<9);//读命令
if(r1 != 0x00)
return res;
SPI_CS_Assert();
bc = 0;
do
{ /* Wait for data packet */
if(bc++ > 1000) {SPI_CS_Deassert();return res;}
}while(SPI_WriteByte(0xff) != 0xfe); //等数据的开始
/* Skip leading bytes */
if (sofs)
{
bc = sofs;
do
{
SPI_WriteByte(0xff);
}
while(--bc);
}
if(buffer) /* Store data to the memory */
{
bc = count;
do
{
*(buffer++)=SPI_WriteByte(0xff);
} while (--bc);
}
else /* Forward data to the outgoing stream (depends on the project) */
{
bc = count;
do
{
SPI_WriteByte(0xff); //就是在这里改了 这里只是读取不用 可改为 SendData(uchar dat) 即可
} while (--bc);
}
复制代码
加载中...
xou822
3楼-- · 2020-01-26 00:53
基于PWM?
是调压么?
加载中...
一周热门
更多
>
相关问题
【东软载波ESF0654 PDS开发板活动】开箱
1 个回答
东软载波ESF0654 PDS开发板外部中断
1 个回答
东软载波ESF0654 PDS开发板高级控制定时器AD16C4T
1 个回答
用串口调试助手为什么只能在hex模式接收发送而在文本模式不行
9 个回答
触摸芯片SC02B/SC04B在地砖灯的设计方案
1 个回答
东软载波ESF0654 PDS开发板串口USART0代码分享
1 个回答
普通32位单片机使用linux的应用代码
5 个回答
东软载波ESF0654 PDS开发板AT24C04的调试
9 个回答
相关文章
51单片机与蓝牙模块连接
0个评论
51单片机的硬件结构
0个评论
基于51单片机的无线遥控器制作
0个评论
51单片机 AD转换
0个评论
51单片机数码管递增显示
0个评论
如何实现对单片机寄存器的访问
0个评论
基于51单片机的指纹密码锁
0个评论
×
关闭
采纳回答
向帮助了您的网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
51单片机
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
关闭
您已邀请
15
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
- DRESULT disk_readp (
- BYTE* buffer, /* Pointer to the destination object */
- DWORD sector, /* Sector number (LBA) */
- WORD sofs, /* Offset in the sector */
- WORD count /* Byte count (bit15:destination) */
- )
- {
- DRESULT res;
- uint8 r1;
- uint16 bc;
-
- res = RES_ERROR;
- r1 = MMC_SD_SendCommand(17, sector<<9);//读命令
- if(r1 != 0x00)
- return res;
-
- SPI_CS_Assert();
-
- bc = 0;
- do
- { /* Wait for data packet */
- if(bc++ > 1000) {SPI_CS_Deassert();return res;}
-
- }while(SPI_WriteByte(0xff) != 0xfe); //等数据的开始
- /* Skip leading bytes */
- if (sofs)
- {
- bc = sofs;
- do
- {
- SPI_WriteByte(0xff);
- }
- while(--bc);
- }
- if(buffer) /* Store data to the memory */
- {
- bc = count;
- do
- {
- *(buffer++)=SPI_WriteByte(0xff);
- } while (--bc);
- }
- else /* Forward data to the outgoing stream (depends on the project) */
- {
- bc = count;
- do
- {
- SPI_WriteByte(0xff); //就是在这里改了 这里只是读取不用 可改为 SendData(uchar dat) 即可
- } while (--bc);
- }
-
复制代码是调压么?
一周热门 更多>