sdhal.h
上传用户:tsengnan
上传日期:2010-03-31
资源大小:22k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

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