资源简介
单片机读写fat32文件系统的源码工程,keil工程,绝对可用,打开编译即可,亲测通过编译通过,
8051单片机读写sd卡内容的例子,51单片机读写fat问系统范例,单片机文件系统,fat16文件系统,51单片机读写sd卡读写硬盘,
执行结果是通过串口输出读到的sd卡的文件系统信息,内容,
振南电子的范例sdfat范例,仅供作单片机开发sd卡的参考。来源网络,
代码片段和文件信息
#include “myfun.h“
#include “string.h“
/*******************************************************
+------------------------------------+
|振南电子 原创程序模块 公共函数部分 |
+------------------------------------+
此源码版权属 振南 全权享有,如欲引用,敬请署名并告知
严禁随意用于商业目的,违者必究,后果自负
振南电子
->产品网站 http://www.znmcu.cn/
->产品论坛 http://bbs.znmcu.cn/
->产品网店 http://shop.znmcu.cn/
->产品咨询 QQ:987582714 MSN:yzn07@126.com
WW:yzn07
********************************************************/
/******************************************************************
- 功能描述:延时函数
- 隶属模块:公开函数模块
- 函数属性:外部,用户可调用
- 参数说明:time:time值决定了延时的时间长短
- 返回说明:无
- 注:.....
******************************************************************/
void delay(unsigned int time)
{
while(time--);
}
/******************************************************************
- 功能描述:将一个32位的变量dat转为字符串,比如把1234转为“1234“
- 隶属模块:公开函数模块
- 函数属性:外部,用户可调用
- 参数说明:dat:带转的long型的变量
str:指向字符数组的指针,转换后的字节串放在其中
- 返回说明:无
******************************************************************/
void u32tostr(unsigned long datchar *str)
{
char temp[20];
unsigned char i=0j=0;
i=0;
while(dat)
{
temp[i]=dat%10+0x30;
i++;
dat/=10;
}
j=i;
for(i=0;i {
str[i]=temp[j-i-1];
}
if(!i) {str[i++]=‘0‘;}
str[i]=0;
}
/******************************************************************
- 功能描述:将一个字符串转为32位的变量,比如“1234“转为1234
- 隶属模块:公开函数模块
- 函数属性:外部,用户可调用
- 参数说明:str:指向待转换的字符串
- 返回说明:转换后的数值
******************************************************************/
unsigned long strtou32(char *str)
{
unsigned long temp=0;
unsigned long fact=1;
unsigned char len=strlen(str);
unsigned char i;
for(i=len;i>0;i--)
{
temp+=((str[i-1]-0x30)*fact);
fact*=10;
}
return temp;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9992 2009-08-12 01:06 SD卡上的znFAT 实例1\WinHex截图.JPG
文件 450 2009-02-01 07:48 SD卡上的znFAT 实例1\znfat sd 1\cf.LST
文件 5608 2009-01-31 00:53 SD卡上的znFAT 实例1\znfat sd 1\ch375.LST
文件 17499 2009-01-31 00:53 SD卡上的znFAT 实例1\znfat sd 1\ch375.OBJ
文件 8858 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\uart.LST
文件 14584 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\fat test.hex
文件 107 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\fat test.lnp
文件 40970 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\fat test.M51
文件 7268 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\uart.OBJ
文件 16896 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\sd.LST
文件 165 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\fat test.ORC
文件 940 2009-12-19 12:21 SD卡上的znFAT 实例1\znfat sd 1\fat test.plg
文件 2248 2009-12-19 12:21 SD卡上的znFAT 实例1\znfat sd 1\fat test.Uv2
文件 4325 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\myfun.LST
文件 5146 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\myfun.OBJ
文件 1631 2009-12-19 12:21 SD卡上的znFAT 实例1\znfat sd 1\fat test.Opt
文件 16224 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\sd.OBJ
文件 2986 2009-06-12 02:04 SD卡上的znFAT 实例1\znfat sd 1\iic.LST
文件 3495 2009-06-12 02:04 SD卡上的znFAT 实例1\znfat sd 1\iic.OBJ
文件 2248 2009-02-01 08:22 SD卡上的znFAT 实例1\znfat sd 1\myfun.c
文件 856 2009-06-19 06:20 SD卡上的znFAT 实例1\znfat sd 1\myfun.h
文件 406 2009-06-12 18:52 SD卡上的znFAT 实例1\znfat sd 1\mytype.h
文件 5945 2009-06-12 02:04 SD卡上的znFAT 实例1\znfat sd 1\pcf8563.LST
文件 11597 2009-06-12 02:04 SD卡上的znFAT 实例1\znfat sd 1\pcf8563.OBJ
文件 2130 2009-06-12 02:04 SD卡上的znFAT 实例1\znfat sd 1\RWBYTE.asm
文件 9814 2009-09-14 11:54 SD卡上的znFAT 实例1\znfat sd 1\sd.c
文件 1672 2009-09-16 11:56 SD卡上的znFAT 实例1\znfat sd 1\sd.h
文件 83018 2009-12-19 12:20 SD卡上的znFAT 实例1\znfat sd 1\znFAT.LST
文件 17797 2009-02-10 19:42 SD卡上的znFAT 实例1\znfat sd 1\STC_NEW_8051.H
文件 5091 2009-02-10 19:43 SD卡上的znFAT 实例1\znfat sd 1\uart.c
............此处省略17个文件信息
相关资源
- 51单片机读写flash
- MSP430F149的SD卡模块驱动
- SD卡自弹座altium封装库
- 各种SD卡 SIM卡 TF卡封装
- 振南电子znFAT文件系统,读写SD卡程序
- MSP430 单片机读写SD卡程序带fat文件系
- 周立功SD卡操作软件包1——ZLG_SD
- TF卡座 micro SD卡
- 微软的fat32文件标准
- STM32的SD卡程序,亲测可用
- SD卡格式化 低格 SD卡低格工具合集拯
- sd卡协议(中文)
- 所有类型的SD卡,TF卡封装
- MSP430读写SD卡FAT文件系统
- micro SD卡 PCB AD封装
- 用SST89系列单片机读取SD卡与TLC5620播放
- TI msp430 官方SD卡读写程序
- 基于stm32f4的SPI操作SD卡的FatFS移植
- 基于MSP430单片机的SD卡读写.pdf
- SD卡协议最新版3.01
- SD卡RAW修复.rar
- 详细介绍了FAT文件系统(包括FAT12FA
- stm8s208上移植SD卡驱动和FAT文件系统
- SD卡量产工具简体中文
- 通过SD卡升级STM32F103程序
- x210开发板的SD卡烧写教程
- STM32-SPI方式驱动SD卡,包含标准库、
- STM32F10x工程_使用SPI方式读写TF卡SD卡
- 电子-ALIENTEKMINISTM32SD卡SPIDMA实验.zip
- micro sd卡座的封装图
评论
共有 条评论