fs_int.h
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. **********************************************************************
  3. *                          Micrium, Inc.
  4. *                      949 Crestview Circle
  5. *                     Weston,  FL 33327-1848
  6. *
  7. *                            uC/FS
  8. *
  9. *             (c) Copyright 2001 - 2003, Micrium, Inc.
  10. *                      All rights reserved.
  11. *
  12. ***********************************************************************
  13. ----------------------------------------------------------------------
  14. File        : fs_int.h 
  15. Purpose     : Internals used accross different layers of the file system
  16. ----------------------------------------------------------------------
  17. Known problems or limitations with current version
  18. ----------------------------------------------------------------------
  19. None.
  20. ---------------------------END-OF-HEADER------------------------------
  21. */
  22. #ifndef _FS_INT_H_
  23. #define _FS_INT_H_
  24. /*********************************************************************
  25. *
  26. *             Global data types
  27. *
  28. **********************************************************************
  29. */
  30. #ifndef FS_USE_LB_READCACHE
  31.   #define FS_USE_LB_READCACHE 0
  32. #endif
  33. #if FS_USE_LB_READCACHE
  34.   #ifndef FS_LB_BLOCKSIZE
  35.     #define FS_LB_BLOCKSIZE 0x200
  36.   #endif
  37.   typedef struct {
  38.     FS_u32            BlockId;
  39.     char              aBlockData[FS_LB_BLOCKSIZE];
  40.   } FS__CACHE_BUFFER;
  41.   typedef struct {
  42.     const int         MaxCacheNum;
  43.     int               CacheIndex;
  44.     FS__CACHE_BUFFER  *const pCache;
  45.   } FS__LB_CACHE;
  46. #endif  /* FS_USE_LB_READCACHE */
  47. typedef struct {
  48.   const char             *const devname;
  49.   const FS__fsl_type     *const fs_ptr;
  50.   const FS__device_type  *const devdriver;
  51. #if FS_USE_LB_READCACHE
  52.   FS__LB_CACHE           *const pDevCacheInfo;
  53. #endif /* FS_USE_LB_READCACHE */
  54.   const void             *const data;
  55. } FS__devinfo_type;
  56. /*********************************************************************
  57. *
  58. *             Externals
  59. *
  60. **********************************************************************
  61. */
  62. /* fs_info.c */
  63. extern const FS__devinfo_type   *const FS__pDevInfo;
  64. extern const unsigned int       FS__maxdev;
  65. extern const unsigned int       FS__fat_maxunit;
  66. #endif  /* _FS_INT_H_ */