66 #ifndef ti_drivers_SDIO__include 67 #define ti_drivers_SDIO__include 85 #define SDIO_STATUS_SUCCESS (0) 90 #define SDIO_STATUS_ERROR (-1) 201 extern int_fast16_t
SDIO_read(SDIO_Handle handle,
void *buf, int_fast32_t numByte);
221 extern int_fast16_t
SDIO_write(SDIO_Handle handle,
void *buf, int_fast32_t numByte);
void * custom
Definition: SDIO.h:110
ADC_Params params
Definition: Driver_Init.h:11
void const * hwAttrs
Definition: SDIO.h:131
SDIO Parameters.
Definition: SDIO.h:108
int_fast16_t SDIO_write(SDIO_Handle handle, void *buf, int_fast32_t numByte)
Function that writes data to SDIO host. The source is specified by buf. And the total number of bytes...
struct SDIO_Config_ SDIO_Config
SDIO Global configuration.
void SDIO_Params_init(SDIO_Params *params)
Function to initialize the SDIO_Params struct to its defaults.
int_fast16_t SDIO_read(SDIO_Handle handle, void *buf, int_fast32_t numByte)
Function that reads the data from SDIO host. The destination is specified by buf. And the total numbe...
void SDIO_close(SDIO_Handle handle)
Function to close a SDIO peripheral specified by the SDIO handle.
SDIO Global configuration.
Definition: SDIO.h:124
void SDIO_init(void)
This function initializes the SDIO driver.
void * object
Definition: SDIO.h:128
SDIO_Handle SDIO_open(uint_least8_t index, SDIO_Params *params)
Function to open the SDIO peripheral with the index and parameters specified.
struct SDIO_Config_ * SDIO_Handle
A handle that is returned from a SDIO_open() call.
Definition: SDIO.h:96