web

所属分类:网络编程
开发工具:C/C++
文件大小:2985KB
下载次数:283
上传日期:2010-12-09 11:12:44
上 传 者cnpcshangbos
说明:  用stm32F103和w5100芯片实现网络通信,支持多种通信协议:TCP,UDP,HTTP。是一个不错的开发模版
(Stm32F103 and w5100 chip with network communication, support for multiple communication protocols: TCP, UDP, HTTP. The development is a good template)

文件列表:
web\FATFS\diskio.c (7934, 2010-04-18)
web\FATFS\diskio.c.bak (7876, 2009-06-06)
web\FATFS\diskio.h (1845, 2009-05-31)
web\FATFS\diskio.h.bak (1839, 2009-05-31)
web\FATFS\doc\00index_e.html (5471, 2009-04-14)
web\FATFS\doc\00index_j.html (5437, 2009-04-14)
web\FATFS\doc\css_e.css (2637, 2009-03-28)
web\FATFS\doc\css_j.css (3000, 2009-03-28)
web\FATFS\doc\en\appnote.html (13980, 2009-04-14)
web\FATFS\doc\en\chmod.html (2959, 2009-03-28)
web\FATFS\doc\en\close.html (2118, 2009-03-28)
web\FATFS\doc\en\dinit.html (1518, 2008-12-13)
web\FATFS\doc\en\dioctl.html (2689, 2009-04-13)
web\FATFS\doc\en\dread.html (1858, 2009-03-29)
web\FATFS\doc\en\dstat.html (1599, 2008-10-20)
web\FATFS\doc\en\dwrite.html (1985, 2009-03-29)
web\FATFS\doc\en\fattime.html (1363, 2007-12-22)
web\FATFS\doc\en\filename.html (3114, 2009-04-01)
web\FATFS\doc\en\forward.html (4917, 2009-03-29)
web\FATFS\doc\en\getfree.html (3233, 2009-04-10)
web\FATFS\doc\en\gets.html (2185, 2009-04-03)
web\FATFS\doc\en\lseek.html (3713, 2009-03-29)
web\FATFS\doc\en\mkdir.html (2429, 2009-03-28)
web\FATFS\doc\en\mkfs.html (3405, 2009-03-29)
web\FATFS\doc\en\mount.html (2012, 2009-02-28)
web\FATFS\doc\en\mountdrv.html (2005, 2006-12-13)
web\FATFS\doc\en\open.html (5675, 2009-03-28)
web\FATFS\doc\en\opendir.html (2458, 2009-03-28)
web\FATFS\doc\en\printf.html (2407, 2009-04-03)
web\FATFS\doc\en\putc.html (1765, 2009-04-03)
web\FATFS\doc\en\puts.html (1828, 2009-04-03)
web\FATFS\doc\en\read.html (2521, 2009-03-28)
web\FATFS\doc\en\readdir.html (3896, 2009-04-14)
web\FATFS\doc\en\rename.html (2847, 2009-03-29)
web\FATFS\doc\en\sdir.html (1387, 2009-04-13)
web\FATFS\doc\en\sfatfs.html (2305, 2009-04-13)
web\FATFS\doc\en\sfile.html (1576, 2009-04-13)
web\FATFS\doc\en\sfileinfo.html (2265, 2009-03-29)
web\FATFS\doc\en\stat.html (2480, 2009-03-29)
... ...

FatFs/Tiny-FatFs Module Source Files R0.07a (C)ChaN, 2009 FILES ff.h Common include file for FatFs and application module. ff.c FatFs module. diskio.h Common include file for FatFs and disk I/O module. diskio.c Skeleton of low level disk I/O module. integer.h Alternative type definitions for integer variables. option Optional external functions. Low level disk I/O module is not included in this archive because the FatFs module is only a generic file system layer and not depend on any specific storage device. You have to provide a low level disk I/O module that written to control your storage device. AGREEMENTS FatFs module is an open source software to implement FAT file system to small embedded systems. This is a free software and is opened for education, research and commercial developments under license policy of following trems. Copyright (C) 2009, ChaN, all right reserved. * The FatFs module is a free software and there is NO WARRANTY. * No restriction on use. You can use, modify and redistribute it for personal, non-profit or commercial use UNDER YOUR RESPONSIBILITY. * Redistributions of source code must retain the above copyright notice. REVISION HISTORY Feb 26, 2006 R0.00 Prototype Apr 29, 2006 R0.01 First release. Jun 01, 2006 R0.02 Added FAT12. Removed unbuffered mode. Fixed a problem on small (<32M) patition. Jun 10, 2006 R0.02a Added a configuration option _FS_MINIMUM. Sep 22, 2006 R0.03 Added f_rename. Changed option _FS_MINIMUM to _FS_MINIMIZE. Dec 11, 2006 R0.03a Improved cluster scan algolithm to write files fast. Fixed f_mkdir creates incorrect directory on FAT32. Feb 04, 2007 R0.04 Supported multiple drive system. (FatFs) Changed some APIs for multiple drive system. Added f_mkfs. (FatFs) Added _USE_FAT32 option. (Tiny-FatFs) Apr 01, 2007 R0.04a Supported multiple partitions on a plysical drive. (FatFs) Fixed an endian sensitive code in f_mkfs. (FatFs) Added a capability of extending the file size to f_lseek. Added minimization level 3. Fixed a problem that can collapse a sector when recreate an existing file in any sub-directory at non FAT32 cfg. (Tiny-FatFs) May 05, 2007 R0.04b Added _USE_NTFLAG option. Added FSInfo support. Fixed some problems corresponds to FAT32. (Tiny-FatFs) Fixed DBCS name can result FR_INVALID_NAME. Fixed short seek (0 < ofs <= csize) collapses the file object. Aug 25, 2007 R0.05 Changed arguments of f_read, f_write. Changed arguments of f_mkfs. (FatFs) Fixed f_mkfs on FAT32 creates incorrect FSInfo. (FatFs) Fixed f_mkdir on FAT32 creates incorrect directory. (FatFs) Feb 03, 2008 R0.05a Added f_truncate(). Added f_utime(). Fixed off by one error at FAT sub-type determination. Fixed btr in f_read() can be mistruncated. Fixed cached sector is not flushed when create and close without write. Apr 01, 2008 R0.06 Added f_forward(). (Tiny-FatFs) Added string functions: fputc(), fputs(), fprintf() and fgets(). Improved performance of f_lseek() on move to the same or following cluster. Apr 01, 2009, R0.07 Merged Tiny-FatFs as a buffer configuration option. Added long file name support. Added multiple code page support. Added re-entrancy for multitask operation. Added auto cluster size selection to f_mkfs(). Added rewind option to f_readdir(). Changed result code of critical errors. Renamed string functions to avoid name collision. Apr 14, 2009, R0.07a Separated out OS dependent code on reentrant cfg. Added multiple sector size support.

近期下载者

相关文件


收藏者