sdi.h
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. #ifndef __SD_H__
  2. #define __SD_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. // Function prototypes
  7. void Test_SDI(void);
  8. void set_system_clock(void);
  9. int SD_card_init(void);
  10. void Rd_cid_csd(char reg);
  11. int Check_status(char type);
  12. int Chk_DATend(void);
  13. int Chk_BUSYend(void);
  14. int Chk_CMDend(int cmd, int be_resp);
  15. int Chk_MMC_OCR(void);
  16. int Chk_SD_OCR(void);
  17. void TR_Buf_new(void);
  18. void Card_sel_desel(char sel_desel);
  19. void CMD0(void);
  20. int CMD55(void);
  21. void Rd_CSD(void);
  22. void Rd_CID(void);
  23. void Rd_Block(void);
  24. void Rd_Stream(void);
  25. void Wt_Block(void);
  26. void Wt_Stream(void);
  27. void Set_Prt(void);
  28. void Clr_Prt(void);
  29. void Flush_Rx_buf(void);
  30. void SetBus(void);
  31. void Set_1bit_bus(void);
  32. void Set_4bit_bus(void);
  33. void View_Rx_buf(void);
  34. void View_Tx_buf(void);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /*__SD_H___*/