flashDev.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* flashDev.h - generic FLASH memory header */
  2. /* Copyright 1994-2000 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,27mar00,zl   added FLASH_CHIP_WIDTH and FLASH_POLL_DEF
  7. 01a,08jan94,dzb  created.
  8. */
  9. /*
  10. DESCRIPTION
  11. This file contains header information for generic FLASH memory routines.
  12. */
  13. #ifndef __INCflashDevh
  14. #define __INCflashDevh
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* defines */
  19. #if     (FLASH_WIDTH == 1)
  20. #define FLASH_DEF       UINT8
  21. #define FLASH_CAST      (UINT8 *)
  22. #endif  /* FLASH_WIDTH */
  23. #if     (FLASH_WIDTH == 2)
  24. #define FLASH_DEF       UINT16
  25. #define FLASH_CAST      (UINT16 *)
  26. #endif  /* FLASH_WIDTH */
  27. #if     (FLASH_WIDTH == 4)
  28. #define FLASH_DEF       UINT32
  29. #define FLASH_CAST      (UINT32 *)
  30. #endif  /* FLASH_WIDTH */
  31. /* Define the width of the chip itself */
  32. #ifndef FLASH_CHIP_WIDTH
  33. #define FLASH_CHIP_WIDTH 1 /* default to 1 byte */
  34. #endif  /* FLASH_CHIP_WIDTH */
  35. #if     (FLASH_CHIP_WIDTH == 1)
  36. #define FLASH_POLL_DEF UINT8
  37. #define FLASH_POLL_CAST (UINT8 *)
  38. #elif  (FLASH_CHIP_WIDTH == 2)
  39. #define FLASH_POLL_DEF UINT16
  40. #define FLASH_POLL_CAST (UINT16 *)
  41. #elif  (FLASH_CHIP_WIDTH == 4)
  42. #define FLASH_POLL_DEF UINT32
  43. #define FLASH_POLL_CAST (UINT32 *)
  44. #endif /* FLASH_CHIP_WIDTH */
  45. #define FLASH_UNKNOWN 0
  46. /* function declarations */
  47. #ifndef _ASMLANGUAGE
  48. #if defined(__STDC__) || defined(__cplusplus)
  49. IMPORT STATUS sysFlashGet (char *string, int strLen, int offset);
  50. IMPORT STATUS sysFlashSet (char *string, int strLen, int segment, int offset);
  51. #else /* __STDC__ */
  52. IMPORT STATUS sysFlashGet ();
  53. IMPORT STATUS sysFlashSet ();
  54. #endif /* __STDC__ */
  55. #endif /* _ASMLANGUAGE */
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* __INCflashDevh */