sdhal.h
上传用户:pudewen666
上传日期:2007-06-08
资源大小:75k
文件大小:2k
源码类别:

微处理器开发

开发平台:

Windows_Unix

  1. /****************************************Copyright (c)**************************************************
  2. **                               Guangzhou ZLG-MCU Development Co.,LTD.
  3. **                                      graduate school
  4. **                                 http://www.zlgmcu.com
  5. **
  6. **--------------File Info-------------------------------------------------------------------------------
  7. ** File name: sdhal.h
  8. ** Last modified Date: 2005-1-6
  9. ** Last Version: V1.0
  10. ** Descriptions: sd 卡驱动软件包: 硬件抽象层 ---- SPI操作函数头文件
  11. ** Soft Packet of SD Card Driver: hard abstrast layer ---- function of SPI operation 
  12. **     header file
  13. **------------------------------------------------------------------------------------------------------
  14. ** Created by: Ming Yuan Zheng
  15. ** Created date: 2005-1-6
  16. ** Version: V1.0
  17. ** Descriptions: The original version
  18. **
  19. **------------------------------------------------------------------------------------------------------
  20. ** Modified by:
  21. ** Modified date:
  22. ** Version:
  23. ** Descriptions:
  24. **
  25. **------------------------------------------------------------------------------------------------------
  26. ** Modified by: 
  27. ** Modified date:
  28. ** Version:
  29. ** Descriptions: 
  30. **
  31. ********************************************************************************************************/
  32. /* 检测卡是否完全插入  check weather card is insert entirely */
  33. extern INT8U SD_ChkCard(void);
  34. extern INT8U SD_ChkCardWP(void);
  35. /* 初始化访问SD卡的硬件初始化 initialize the hardware that access sd card */
  36. extern void SD_HardWareInit(void);
  37. /* 设置SPI的时钟小于400kHZ set the clock of SPI less than 400kHZ */
  38. extern void SPI_Clk400k(void);
  39. /* 设置SPI的clock到最大值 set the clock of SPI to maximum */
  40. extern void SPI_ClkToMax(void);
  41. /* 通过SPI接口发送一个字节 send a byte by SPI interface */
  42. extern void SPI_SendByte(INT8U byte);
  43. /* 从SPI接口接收一个字节 receive a byte from SPI interface */
  44. extern INT8U SPI_RecByte(void);
  45. /* 片选SPI从机 select the SPI slave */
  46. extern void SPI_CS_Assert(void);
  47. /* 不片选SPI从机 not select the SPI slave */
  48. extern void SPI_CS_Deassert(void);