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.
Dependents: F746_AudioPlayerSD F746_SD_WavPlayer F746_SD_GraphicEqualizer_ren0620 F746_SD_TextFile_RW ... more
Diff: SD_Helper.h
- Revision:
- 0:225138ac03fd
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SD_Helper.h Sat Apr 16 03:56:15 2016 +0000 @@ -0,0 +1,29 @@ + /* 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 */