MAX32660 Peripheral Driver API
Peripheral Driver API for the MAX32660
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Modules
SPIMSS

Modules

 SPIMSS_Registers
 

Data Structures

struct  mxc_spimss_req_t
 

Typedefs

typedef void(* mxc_spimss_callback_fn) (mxc_spimss_req_t *req, int error_code)
 

Enumerations

enum  mxc_spimss_width_t
 

Functions

int MXC_SPIMSS_Init (mxc_spimss_regs_t *spi, unsigned mode, unsigned freq, const sys_map_t sys_cfg)
 
int MXC_SPIMSS_Shutdown (mxc_spimss_regs_t *spi)
 
int MXC_SPIMSS_MasterTrans (mxc_spimss_regs_t *spi, mxc_spimss_req_t *req)
 
int MXC_SPIMSS_MasterTransDMA (mxc_spimss_regs_t *spi, mxc_spimss_req_t *req)
 
void MXC_SPIMSS_Handler (mxc_spimss_regs_t *spi)
 
int MXC_SPIMSS_SlaveTrans (mxc_spimss_regs_t *spi, mxc_spimss_req_t *req)
 
int MXC_SPIMSS_MasterTransAsync (mxc_spimss_regs_t *spi, mxc_spimss_req_t *req)
 
int MXC_SPIMSS_SlaveTransAsync (mxc_spimss_regs_t *spi, mxc_spimss_req_t *req)
 
int MXC_SPIMSS_AbortAsync (mxc_spimss_req_t *req)
 
int MXC_SPIMSS_SetAutoDMAHandlers (mxc_spimss_regs_t *spi, bool enable)
 
int MXC_SPIMSS_SetTXDMAChannel (mxc_spimss_regs_t *spi, unsigned int channel)
 
int MXC_SPIMSS_GetTXDMAChannel (mxc_spimss_regs_t *spi)
 
int MXC_SPIMSS_SetRXDMAChannel (mxc_spimss_regs_t *spi, unsigned int channel)
 
int MXC_SPIMSS_GetRXDMAChannel (mxc_spimss_regs_t *spi)
 

Detailed Description


Data Structure Documentation

◆ mxc_spimss_req

struct mxc_spimss_req

Structure definition for an SPI Master Transaction request.

Structure type representing a SPI Master Transaction request.

Note
When using this structure for an asynchronous operation, the structure must remain allocated until the callback is completed.

Data Fields

uint8_t ssel
 
uint8_t deass
 
void * tx_data
 
void * rx_data
 
mxc_spimss_width_t width
 
unsigned len
 
unsigned bits
 
unsigned rx_num
 
unsigned tx_num
 
mxc_spimss_callback_fn callback
 

Field Documentation

◆ bits

unsigned bits

Number of bits in transfer unit (e.g. 8 for byte, 16 for short)

◆ callback

Callback function if desired, NULL otherwise

◆ deass

uint8_t deass

Not Used

◆ len

unsigned len

Number of transfer units to send from the tx_data buffer.

◆ rx_data

void* rx_data

Pointer to a buffer to store data received. NULL if undesired.

◆ rx_num

unsigned rx_num

Number of bytes actually read into the rx_data buffer.

◆ ssel

uint8_t ssel

Not Used

◆ tx_data

void* tx_data

Pointer to a buffer to transmit data from. NULL if undesired.

◆ tx_num

unsigned tx_num

Number of bytes actually sent from the tx_data buffer

◆ width

Not Used

Typedef Documentation

◆ mxc_spimss_callback_fn

typedef void(* mxc_spimss_callback_fn) (mxc_spimss_req_t *req, int error_code)

Callback function type used in asynchronous SPI Master communication requests.

The function declaration for the SPI Master callback is:

void callback(spi_req_t * req, int error_code);
req Pointer to a #spi_req object representing the active SPI Master active transaction.
error_code An error code if the active transaction had a failure or E_NO_ERROR if successful.
Note
Callback will execute in interrupt context

Enumeration Type Documentation

◆ mxc_spimss_width_t

Enumeration type for setting the number data lines to use for communication.

Enumerator
DUMMY_1 

NOT USED

DUMMY_2 

NOT USED

DUMMY_3 

NOT USED

Function Documentation

◆ MXC_SPIMSS_AbortAsync()

int MXC_SPIMSS_AbortAsync ( mxc_spimss_req_t *  req)

Aborts an Asynchronous request.

Parameters
reqPointer to spi request
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_GetRXDMAChannel()

int MXC_SPIMSS_GetRXDMAChannel ( mxc_spimss_regs_t spi)

Returns the current RX channel id set for SPIMSS DMA transaction.

Parameters
spiPointer to spi module
Returns
#RXDMA_ChannelId of the spi module.

◆ MXC_SPIMSS_GetTXDMAChannel()

int MXC_SPIMSS_GetTXDMAChannel ( mxc_spimss_regs_t spi)

Returns the current TX channel id set for SPIMSS DMA transaction.

Parameters
spiPointer to spi module
Returns
#TXDMA_ChannelId of the spi module.

◆ MXC_SPIMSS_Handler()

void MXC_SPIMSS_Handler ( mxc_spimss_regs_t spi)

Execute SPI transaction based on interrupt handler.

Parameters
spiThe spi

◆ MXC_SPIMSS_Init()

int MXC_SPIMSS_Init ( mxc_spimss_regs_t spi,
unsigned  mode,
unsigned  freq,
const sys_map_t  sys_cfg 
)

Initialize the spi.

Parameters
spiPointer to spi module to initialize.
modeSPI mode for clock phase and polarity.
freqDesired clock frequency.
sys_cfgSystem configuration object
Returns
E_NO_ERROR if successful, appropriate error otherwise

◆ MXC_SPIMSS_MasterTrans()

int MXC_SPIMSS_MasterTrans ( mxc_spimss_regs_t spi,
mxc_spimss_req_t *  req 
)

Execute a master transaction.

Parameters
spiPointer to spi module.
reqPointer to spi request
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_MasterTransAsync()

int MXC_SPIMSS_MasterTransAsync ( mxc_spimss_regs_t spi,
mxc_spimss_req_t *  req 
)

Asynchronously read/write SPI Master data.

Parameters
spiPointer to spi module
reqPointer to spi request
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_MasterTransDMA()

int MXC_SPIMSS_MasterTransDMA ( mxc_spimss_regs_t spi,
mxc_spimss_req_t *  req 
)

Execute a master transaction over DMA.

Parameters
spiPointer to spi module.
reqPointer to spi request.
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_SetAutoDMAHandlers()

int MXC_SPIMSS_SetAutoDMAHandlers ( mxc_spimss_regs_t spi,
bool  enable 
)

Enable Disable auto dma handling. If set to true, dma channel for transaction is acquired in the MXC_SPIMSS_MasterTransDMA function. Otherwise, user has to set tx and rx channel for SPIMSS DMA transaction with MXC_SPIMSS_SetTXDMAChannel and MXC_SPIMSS_SetRXDMAChannel functions.

Parameters
spiPointer to spi module
enableEnable Disable auto handler
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_SetRXDMAChannel()

int MXC_SPIMSS_SetRXDMAChannel ( mxc_spimss_regs_t spi,
unsigned int  channel 
)

Set the RX channel id for DMA to be used in SPIMSS DMA transaction.

Parameters
spiPointer to spi module
channelId of the channel for RXDma Channel.
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_SetTXDMAChannel()

int MXC_SPIMSS_SetTXDMAChannel ( mxc_spimss_regs_t spi,
unsigned int  channel 
)

Set the TX channel id for DMA to be used in SPIMSS DMA transaction.

Parameters
spiPointer to spi module
channelId of the channel for TXDma Channel.
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_Shutdown()

int MXC_SPIMSS_Shutdown ( mxc_spimss_regs_t spi)

Shutdown SPI module.

Parameters
spiPointer to SPI regs.
Returns
E_NO_ERROR if successful, appropriate error otherwise

◆ MXC_SPIMSS_SlaveTrans()

int MXC_SPIMSS_SlaveTrans ( mxc_spimss_regs_t spi,
mxc_spimss_req_t *  req 
)

Execute a slave transaction.

Parameters
spiPointer to spi module.
reqPointer to spi request
Returns
E_NO_ERROR if successful, error if unsuccessful.

◆ MXC_SPIMSS_SlaveTransAsync()

int MXC_SPIMSS_SlaveTransAsync ( mxc_spimss_regs_t spi,
mxc_spimss_req_t *  req 
)

Asynchronously read/write SPI Slave data.

Parameters
spiPointer to spi module
reqPointer to spi request
Returns
E_NO_ERROR if successful, error if unsuccessful.