SDFileSystem for STM32F746NG DISCOVERY with 4bit SDMMC interface on fixed pins

Dependencies:   FATFileSystem

Dependents:   DISCO-F746NG_SDFileSystem uzairkhan DISCO-F746NG_Scope_copy

Fork of SDFileSystem by Neil Thiessen

SD_Helper.h

Committer:
DieterGraef
Date:
2016-04-16
Revision:
27:8d192c180436
Parent:
24:698affe9560c

File content as of revision 27:8d192c180436:

 /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef ___SD_Helper
#define ___SD_Helper

#include "cmsis.h"

#ifdef __cplusplus
 extern "C" {
#endif

void CPU_CACHE_Flush(uint32_t * buffer, uint32_t length);

void    BSP_SD_CommandTransaction(char cmd, unsigned int arg);

void BSP_SD_Set_Busy(void);
void BSP_SD_Clear_Busy(void);
int BSP_SD_Get_Busy(void);
void BSP_SD_Set_RX_Busy(void);
void BSP_SD_Clear_RX_Busy(void);
int BSP_SD_Get_RX_Busy(void);
void BSP_SD_Set_TX_Busy(void);
void BSP_SD_Clear_TX_Busy(void);
int BSP_SD_Get_TX_Busy(void);

#ifdef __cplusplus
}
#endif

#endif /* ___SD_Helper */