?? sdhal.h
字號:
/******************************************************************************
** Descriptions: sd 卡驅動軟件包: 硬件抽象層 ---- SPI操作函數頭文件
******************************************************************************/
#ifndef __sdhal_h
#define __sdhal_h
void SPI_INIT(void);
/* 初始化訪問SD卡的硬件初始化 initialize the hardware that access sd card */
void SD_HardWareInit(void);
/* 設置SPI的時鐘小于400kHZ set the clock of SPI less than 400kHZ */
void SPI_Clk400k(void);
/* 設置SPI的clock到最大值 set the clock of SPI to maximum */
void SPI_ClkToMax(void);
/* 通過SPI接口發送一個字節 send a byte by SPI interface */
void SPI_SendByte(uint8 byte);
/* 從SPI接口接收一個字節 receive a byte from SPI interface */
uint8 SPI_RecByte(void);
/* 片選SPI從機 select the SPI slave */
void SPI_CS_Assert(void);
/* 不片選SPI從機 not select the SPI slave */
void SPI_CS_Deassert(void);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -