![]() |
MAX32665 Peripheral Driver API
Peripheral Driver API for the MAX32665
|
Modules | |
SDHC_Registers | |
Data Structures | |
struct | mxc_sdhc_cfg_t |
struct | mxc_sdhc_cmd_cfg_t |
Typedefs | |
typedef void(* | mxc_sdhc_callback_fn) (int error_code) |
Functions | |
int | MXC_SDHC_Init (const mxc_sdhc_cfg_t *cfg) |
void | MXC_SDHC_PowerUp (void) |
void | MXC_SDHC_PowerDown (void) |
int | MXC_SDHC_Shutdown (void) |
void | MXC_SDHC_Set_Clock_Config (unsigned int clk_div) |
unsigned int | MXC_SDHC_Get_Clock_Config (void) |
unsigned int | MXC_SDHC_Get_Input_Clock_Freq (void) |
int | MXC_SDHC_SendCommand (mxc_sdhc_cmd_cfg_t *sd_cmd_cfg) |
int | MXC_SDHC_SendCommandAsync (mxc_sdhc_cmd_cfg_t *sd_cmd_cfg) |
void | MXC_SDHC_Handler (void) |
int | MXC_SDHC_Card_Inserted (void) |
void | MXC_SDHC_ClearFlags (uint32_t mask) |
unsigned | MXC_SDHC_GetFlags (void) |
void | MXC_SDHC_Reset (void) |
void | MXC_SDHC_Reset_CMD_DAT (void) |
int | MXC_SDHC_Card_Busy (void) |
unsigned int | MXC_SDHC_Get_Host_Cn_1 (void) |
uint32_t | MXC_SDHC_Get_Response32 (void) |
uint32_t | MXC_SDHC_Get_Response32_Auto (void) |
void | MXC_SDHC_Get_Response128 (unsigned char *response) |
struct mxc_sdhc_cfg_t |
Used to configure voltage and clock for sdhc interface.
Data Fields | |
unsigned int | bus_voltage |
unsigned int | block_gap |
unsigned int | clk_div |
unsigned int block_gap |
Set block gap register default is 0
unsigned int bus_voltage |
Use constants above for 1.8V, 3.0V, 3.3V.
unsigned int clk_div |
Divider for SD clock
struct mxc_sdhc_cmd_cfg_t |
Used to configure sdhc interface.
Data Fields | |
uint32_t | sdma |
uint32_t | block_size |
uint32_t | block_count |
uint32_t | arg_1 |
unsigned int | dma |
unsigned int | direction |
uint32_t | command |
uint32_t | host_control_1 |
mxc_sdhc_callback_fn | callback |
uint32_t arg_1 |
Argument 1 holds the arguments for the commands sent to the card
uint32_t block_count |
Number of blocks to transfer
uint32_t block_size |
Size of transfer block in bytes
mxc_sdhc_callback_fn callback |
Function pointer to completion callback function, NULL if not desired
uint32_t command |
Command to be issued on bus (CMD0, CMD1, ...)
unsigned int direction |
Direction of transfer
unsigned int dma |
DMA enable bit
uint32_t host_control_1 |
Host control register 1 to be assigned before command is issued
uint32_t sdma |
SDMA register for read or write transaction
typedef void(* mxc_sdhc_callback_fn) (int error_code) |
Callback function type used in asynchromous SDHC communications requests.
The function declaration for the SDHC callback is:
error_code | An error code if the active transaction had a failure or E_NO_ERROR if successful. |
int MXC_SDHC_Card_Busy | ( | void | ) |
Check if Card is busy.
int MXC_SDHC_Card_Inserted | ( | void | ) |
See if card is inserted.
void MXC_SDHC_ClearFlags | ( | uint32_t | mask | ) |
Clear interrupt flags.
mask | Mask of the SDHC interrupts to clear, see SDHC_INTFL Register. |
unsigned int MXC_SDHC_Get_Clock_Config | ( | void | ) |
Get clock divider.
unsigned int MXC_SDHC_Get_Host_Cn_1 | ( | void | ) |
Retrieve host control 1 register.
unsigned int MXC_SDHC_Get_Input_Clock_Freq | ( | void | ) |
Get the input clock frequency for the SDHC peripheral.
void MXC_SDHC_Get_Response128 | ( | unsigned char * | response | ) |
Read a 128-bit command response.
response | Pointer to storage for response (16 bytes) |
This function may be used to read response type R2 (CID or CSD)
uint32_t MXC_SDHC_Get_Response32 | ( | void | ) |
Read a 32-bit command response.
This function may be used to read response types R1, R1a, R3, R4, R5, R5b, and R6
uint32_t MXC_SDHC_Get_Response32_Auto | ( | void | ) |
Read a 32-bit command response for Auto commands.
This function may be used to read response types R1b and R1 after an Auto CMD12 or Auto CMD23
unsigned MXC_SDHC_GetFlags | ( | void | ) |
Get interrupt flags.
void MXC_SDHC_Handler | ( | void | ) |
SDHC interrupt handler.
This function should be called by the application from the interrupt handler if SDHC interrupts are enabled. Alternately, this function can be periodically called by the application if SDHC interrupts are disabled. Only necessary to call this when using asynchronous functions.
int MXC_SDHC_Init | ( | const mxc_sdhc_cfg_t * | cfg | ) |
Initialize and enable SDHC module.
cfg | Pointer to SDHC configuration. |
int MXC_SDHC_SendCommand | ( | mxc_sdhc_cmd_cfg_t * | sd_cmd_cfg | ) |
Send Command, blocking.
sd_cmd_cfg | The sd command configuration |
int MXC_SDHC_SendCommandAsync | ( | mxc_sdhc_cmd_cfg_t * | sd_cmd_cfg | ) |
Send SDHC command Async.
sd_cmd_cfg | The sd command configuration |
void MXC_SDHC_Set_Clock_Config | ( | unsigned int | clk_div | ) |
Set clock divider.
clk_div | Divider setting |
int MXC_SDHC_Shutdown | ( | void | ) |
Shutdown SDHC module.