Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
SD_Helper.h
- Committer:
- jeanpierreaulas
- Date:
- 2020-12-30
- Revision:
- 5:16cf8be7f724
- Parent:
- 0:225138ac03fd
File content as of revision 5:16cf8be7f724:
/* 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 */