Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
fs_int.h
Package: STM32-uCOS-II_UAV.rar [view]
Upload User: yj_qqy
Upload Date: 2017-01-28
Package Size: 2911k
Code Size: 2k
Category:
uCOS
Development Platform:
C/C++
- /*
- **********************************************************************
- * Micrium, Inc.
- * 949 Crestview Circle
- * Weston, FL 33327-1848
- *
- * uC/FS
- *
- * (c) Copyright 2001 - 2003, Micrium, Inc.
- * All rights reserved.
- *
- ***********************************************************************
- ----------------------------------------------------------------------
- File : fs_int.h
- Purpose : Internals used accross different layers of the file system
- ----------------------------------------------------------------------
- Known problems or limitations with current version
- ----------------------------------------------------------------------
- None.
- ---------------------------END-OF-HEADER------------------------------
- */
- #ifndef _FS_INT_H_
- #define _FS_INT_H_
- /*********************************************************************
- *
- * Global data types
- *
- **********************************************************************
- */
- #ifndef FS_USE_LB_READCACHE
- #define FS_USE_LB_READCACHE 0
- #endif
- #if FS_USE_LB_READCACHE
- #ifndef FS_LB_BLOCKSIZE
- #define FS_LB_BLOCKSIZE 0x200
- #endif
- typedef struct {
- FS_u32 BlockId;
- char aBlockData[FS_LB_BLOCKSIZE];
- } FS__CACHE_BUFFER;
- typedef struct {
- const int MaxCacheNum;
- int CacheIndex;
- FS__CACHE_BUFFER *const pCache;
- } FS__LB_CACHE;
- #endif /* FS_USE_LB_READCACHE */
- typedef struct {
- const char *const devname;
- const FS__fsl_type *const fs_ptr;
- const FS__device_type *const devdriver;
- #if FS_USE_LB_READCACHE
- FS__LB_CACHE *const pDevCacheInfo;
- #endif /* FS_USE_LB_READCACHE */
- const void *const data;
- } FS__devinfo_type;
- /*********************************************************************
- *
- * Externals
- *
- **********************************************************************
- */
- /* fs_info.c */
- extern const FS__devinfo_type *const FS__pDevInfo;
- extern const unsigned int FS__maxdev;
- extern const unsigned int FS__fat_maxunit;
- #endif /* _FS_INT_H_ */