tadiaojiankong

所属分类:处理器开发
开发工具:C/C++
文件大小:4144KB
下载次数:23
上传日期:2014-07-16 23:03:56
上 传 者飞刀
说明:  一个以STM32处理器为核心的塔吊监控程序,功能很全,包括各种通信程序和界面
(STM32 processor as the core of a tower crane monitoring procedures, functions very wide, including various communications programs and interfaces)

文件列表:
塔吊监控 (0, 2013-05-04)
塔吊监控\ENC28J60.C (12975, 2013-03-10)
塔吊监控\ENC28J60.H (9354, 2013-03-10)
塔吊监控\FATFS (0, 2013-05-04)
塔吊监控\FATFS\SPI_SD_driver.c (25104, 2011-08-14)
塔吊监控\FATFS\SPI_SD_driver.h (2408, 2011-08-14)
塔吊监控\FATFS\diskio.c (6235, 2010-10-08)
塔吊监控\FATFS\diskio.h (1864, 2008-12-20)
塔吊监控\FATFS\ff.c (67089, 2010-10-08)
塔吊监控\FATFS\ff.h (11811, 2011-04-17)
塔吊监控\FATFS\integer.h (911, 2010-10-06)
塔吊监控\FATFS\tff.c (58520, 2010-10-06)
塔吊监控\FATFS\tff.h (10614, 2008-12-22)
塔吊监控\FS_CM3.lib (659780, 2009-03-19)
塔吊监控\File_Config.h (12950, 2009-03-19)
塔吊监控\JD.pic (677, 2011-04-14)
塔吊监控\JLink Regs CM3.txt (497, 2013-05-04)
塔吊监控\JLinkLog.txt (922191, 2013-05-04)
塔吊监控\JLinkSettings.ini (285, 2010-08-03)
塔吊监控\List (0, 2013-05-04)
塔吊监控\List\DLP.map (255131, 2013-05-04)
塔吊监控\List\STM3210E-EVAL.map (91188, 2009-03-15)
塔吊监控\List\cortexm3_macro.lst (26115, 2013-05-02)
塔吊监控\List\stm32f10x_vector.lst (36886, 2013-05-02)
塔吊监控\MSCOMCT2.OCX (644400, 1998-06-26)
塔吊监控\MSCOMCTL.OCX (1081616, 2004-03-09)
塔吊监控\MSVBVM60.DLL (1388544, 2001-09-05)
塔吊监控\Obj (0, 2013-05-04)
塔吊监控\Obj\DLP.axf (435796, 2013-05-04)
塔吊监控\Obj\DLP.hex (394555, 2013-04-28)
塔吊监控\Obj\DLP.htm (150229, 2013-05-04)
塔吊监控\Obj\DLP.lnp (828, 2013-05-04)
塔吊监控\Obj\DLP.plg (311942, 2013-05-04)
塔吊监控\Obj\DLP.sct (479, 2013-04-28)
塔吊监控\Obj\DLP.tra (2711, 2013-05-04)
塔吊监控\Obj\DLP_sct.Bak (479, 2013-04-01)
塔吊监控\Obj\ExtDll.iex (19, 2013-05-04)
塔吊监控\Obj\cortexm3_macro.d (42, 2013-05-02)
塔吊监控\Obj\cortexm3_macro.o (2456, 2013-05-02)
... ...

FatFs/Tiny-FatFs Module Source Files R0.06 (C)ChaN, 2008 FILES ff.h Common include file for FatFs and application module. ff.c FatFs module. tff.h Common include file for Tiny-FatFs and application module. tff.c Tiny-FatFs module. diskio.h Common include file for (Tiny-)FatFs and disk I/O module. diskio.c Skeleton of low level disk I/O module. integer.h Alternative type definitions for integer variables. Low level disk I/O module is not included in this archive because the FatFs/Tiny-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. CONFIGURATION OPTIONS There are several configuration options for various envilonment and requirement. The configuration options are defined in header files, ff.h and tff.h. _MCU_ENDIAN This is the most impotant option that depends on the processor architecture. The value 2 is compatible with all MCUs. It forces FatFs to access FAT structures in byte-by-byte. When the target device corresponds to either or both of following cases, it must always be set 2. - Muti-byte integers (short, long) are stored in Big-Endian. - Address miss-aligned memory access results in an incorrect behavior. If not the case, setting 1 is recommended rather than 2 for good code efficiency. The initial value is 0. (Must set 1 or 2 properly) _FS_READONLY When application program does not require write functions, _FS_READONLY can be set to 1 to eliminate writing code to reduce the module size. This setting should be reflected to configurations of low level disk I/O module if available. The initial value is 0. (Read and Write) _FS_MINIMIZE When application program requires only file read/write function and nothing else, _FS_MINIMIZE can be changed to eliminate some functions to reduce the module size. The initial value is 0. (Full function) _USE_STRFUNC When _USE_STRFUNC is set to 1, the string functions, fputc, fputs, fprintf and fgets are enabled. The initial value is 0. (String functions are not available) _DRIVES Number of drives to be used. This option is not available on Tiny-FatFs. The initial value is 2. _FAT32 When _FAT32 is set to 1, the FAT32 support is added with an additional code size. This option is for only Tiny-FatFs. FatFs always supports all FAT sub-types. The initial value is 0. (No FAT32 support) _USE_FSINFO When _USE_FSINFO is set to 1, FSInfo is used for FAT32 volume. The initial value is 0. (FSInfo is not used) _USE_SJIS When _USE_SJIS is set to 1, Shift_JIS code set can be used as a file name, otherwire second byte of double-byte characters will be collapted. The initial value is 1. _USE_NTFLAG When _USE_NTFLAG is set to 1, upper/lower case of the file/dir name is preserved. Note that the files are always accessed in case insensitive. The initial value is 1. _USE_MKFS When _USE_MKFS is set to 1 and _FS_READONLY is set to 0, f_mkfs function is enabled. This is for only FatFs module and not supported on Tiny-FatFs. The initial value is 0. (f_mkfs is not available) Following table shows which function is removed by configuration options. _FS_MINIMIZE _FS_READONLY _USE_STRFUNC _USE_MKFS _USE_FORWARD (1) (2) (3) (1) (0) (0) (0) f_mount f_open f_close f_read f_write x f_sync x f_lseek x f_opendir x x f_readdir x x f_stat x x x f_getfree x x x x f_truncate x x x x f_unlink x x x x f_mkdir x x x x f_chmod x x x x f_utime x x x x f_rename x x x x f_mkfs x x f_forward x fputc x x fputs x x fprintf x x fgets x AGREEMENTS The FatFs/Tiny-FatFs module is a free software and there is no warranty. The FatFs/Tiny-FatFs module is opened for education, reserch and development. There is no restriction on use. You can use it for personal, non-profit or commercial use under your responsibility. 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.

近期下载者

相关文件


收藏者