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

uCOS

开发平台:

C/C++

  1. /****************************************Copyright (c)**************************************************
  2. **                                 Co.,LTD.
  3. **                                     
  4. **                                 http://
  5. **
  6. **--------------File Info-------------------------------------------------------------------------------
  7. ** File name: sdhal.h
  8. ** Last modified Date: 2007-10-15
  9. ** Last Version: V2.0
  10. ** Descriptions: SD/MMC卡读写模块 ---- SPI操作函数头文件
  11. ** Soft Packet of SD/MMC Card: hard abstrast layer ---- function of SPI operation 
  12. **  header file
  13. **------------------------------------------------------------------------------------------------------
  14. ** Created by: lhlzjut@hotmail.com
  15. ** Created date: 2007-10-15
  16. ** Version: V1.0
  17. ** Descriptions: The original version
  18. **
  19. **------------------------------------------------------------------------------------------------------
  20. ********************************************************************************************************/
  21. #ifndef __SDHAL_H__
  22. #define __SDHAL_H__
  23. #include "sdconfig.h"
  24. /* 检测卡是否完全插入  check weather card is insert entirely */
  25. extern INT8U SD_ChkCard(void);
  26. /* 检测卡是否写保护  check weather card is write protect */
  27. extern INT8U SD_ChkCardWP(void);
  28. /* 初始化访问SD卡的硬件初始化 initialize the hardware that access sd card */
  29. extern void SD_HardWareInit(void);
  30. /* 设置SPI的时钟小于400kHZ set the clock of SPI less than 400kHZ */
  31. extern void SPI_Clk400k(void);
  32. /* 设置SPI的clock到最大值 set the clock of SPI to maximum */
  33. extern void SPI_ClkToMax(void);
  34. /* 通过SPI接口发送一个字节 send a byte by SPI interface */
  35. extern void SPI_SendByte(INT8U byte);
  36. /* 覵PI接口接收一个字节 receive a byte from SPI interface */
  37. extern INT8U SPI_RecByte(void);
  38. /* 片选SPI从机 select the SPI slave */
  39. extern void SPI_CS_Assert(void);
  40. /* 不片选SPI从机 not select the SPI slave */
  41. extern void SPI_CS_Deassert(void);
  42. #endif