|
| enum | hal_sdio_status_t {
HAL_SDIO_STATUS_BUSY = -2,
HAL_SDIO_STATUS_ERROR = -1,
HAL_SDIO_STATUS_OK = 0
} |
| | This enum defines the SDIO API return type. More...
|
| |
| enum | hal_sdio_bus_width_t {
HAL_SDIO_BUS_WIDTH_1 = 1,
HAL_SDIO_BUS_WIDTH_4 = 2
} |
| | This enum define the SDIO bus width types. More...
|
| |
| enum | hal_sdio_direction_t {
HAL_SDIO_DIRECTION_READ = 0,
HAL_SDIO_DIRECTION_WRITE = 1
} |
| | This enum defines the SDIO command direction types. More...
|
| |
| enum | hal_sdio_command53_operation_t {
HAL_SDIO_FIXED_ADDRESS = 0,
HAL_SDIO_INCREMENTING_ADDRESS = 1
} |
| | This enum defines the SDIO command operation types. More...
|
| |
| enum | hal_sdio_function_id_t {
HAL_SDIO_FUNCTION_0 = 0,
HAL_SDIO_FUNCTION_1 = 1
} |
| | This enum defines the SDIO command function number. More...
|
| |
| enum | hal_sdio_callback_event_t {
HAL_SDIO_EVENT_SUCCESS = 0,
HAL_SDIO_EVENT_TRANSFER_ERROR = -1,
HAL_SDIO_EVENT_CRC_ERROR = -2,
HAL_SDIO_EVENT_DATA_TIMEOUT = -3
} |
| |
| enum | hal_sdio_port_t {
HAL_SDIO_PORT_0 = 0,
HAL_SDIO_PORT_1 = 1
} |
| | This enum defines the SDIO port. More...
|
| |