![]() |
MAX78000 Peripheral Driver API
Peripheral Driver API for the MAX78000
|
Modules | |
I2C_Registers | |
Data Structures | |
struct | mxc_i2c_req_t |
Typedefs | |
typedef int(* | mxc_i2c_getAck_t) (mxc_i2c_regs_t *i2c, unsigned char byte) |
typedef void(* | mxc_i2c_complete_cb_t) (mxc_i2c_req_t *req, int result) |
typedef void(* | mxc_i2c_dma_complete_cb_t) (int len, int result) |
typedef int(* | mxc_i2c_slave_handler_t) (mxc_i2c_regs_t *i2c, mxc_i2c_slave_event_t event, void *data) |
Enumerations | |
enum | mxc_i2c_slave_event_t |
struct _i2c_req_t |
The information required to perform a complete I2C transaction as the bus master.
The information required to perform a complete I2C transaction as the bus master. This structure is used by the MXC_I2C_MasterTransaction() and MXC_I2C_MasterTransactionAsync() functions.
Data Fields | |
mxc_i2c_regs_t * | i2c |
unsigned int | addr |
unsigned char * | tx_buf |
unsigned int | tx_len |
unsigned char * | rx_buf |
unsigned int | rx_len |
int | restart |
mxc_i2c_complete_cb_t | callback |
mxc_i2c_complete_cb_t callback |
The callback used to indicate the transaction is complete or an error has occurred. This field may be set to NULL if no indication is necessary. This field is only used by the MXC_I2C_MasterTransactionAsync() function. MXC_I2C_MasterTransaction() ignores the callback field.
mxc_i2c_regs_t* i2c |
I2C block used.)
Pointer to I2C registers (selects the
int restart |
Controls whether the transaction is terminated with a stop or repeated start condition. Use 0 for a stop, non-zero for repeated start.
unsigned int rx_len |
The number of bytes to read. On return from the function, this will be set to the number of bytes actually received.
unsigned int tx_len |
The number of bytes to write. On return from the function, this will be set to the number of bytes actually transmitted.
typedef void(* mxc_i2c_complete_cb_t) (mxc_i2c_req_t *req, int result) |
The callback routine used by the MXC_I2C_MasterTransactionAsync() function to indicate the transaction has completed.
req | The details of the transaction. |
result | 0 if all bytes are acknowledged, 1 if any byte transmitted is not acknowledged, negative if error. See Error Codes for the list of error codes. |
typedef void(* mxc_i2c_dma_complete_cb_t) (int len, int result) |
The callback routine used by the I2C Read/Write FIFO DMA functions to indicate the transaction has completed.
len | The length of data actually read/written |
result | See Error Codes for the list of error codes. |
typedef int(* mxc_i2c_getAck_t) (mxc_i2c_regs_t *i2c, unsigned char byte) |
The callback used by the MXC_I2C_ReadByteInteractive() function.
The callback routine used by the MXC_I2C_ReadByteInteractive() function. This function allows the application to determine whether the byte received should be acknowledged or not.
i2c | Pointer to I2C registers (selects the I2C block used.) |
byte | The byte received. |
typedef int(* mxc_i2c_slave_handler_t) (mxc_i2c_regs_t *i2c, mxc_i2c_slave_event_t event, void *data) |
The callback routine used by the MXC_I2C_SlaveTransaction() and MXC_I2C_SlaveTransactionAsync functions to handle the various I2C slave events.
i2c | Pointer to I2C registers (selects the I2C block used.) |
event | The event that occurred to trigger this callback. |
data | This field is used to pass Success/Fail for the MXC_I2C_EVT_TRANS_COMP event. |
The list of events reported by the MXC_I2C_SlaveTransaction() and MXC_I2C_SlaveTransactionAsync() functions.
The list of events reported by the MXC_I2C_SlaveTransaction() and MXC_I2C_SlaveTransactionAsync() functions. It is up to the calling application to handle these events.
void MXC_I2C_AbortAsync | ( | mxc_i2c_regs_t * | i2c | ) |
Abort any asynchronous requests in progress.
Abort any asynchronous requests in progress. Any callbacks associated with the active transaction will be executed to indicate when the transaction has been terminated.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_AsyncHandler | ( | mxc_i2c_regs_t * | i2c | ) |
The processing function for asynchronous transactions.
When using the asynchronous functions, the application must call this function periodically. This can be done from within the I2C interrupt handler or periodically by the application if I2C interrupts are disabled.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_AsyncStop | ( | mxc_i2c_regs_t * | i2c | ) |
Stop any asynchronous requests in progress.
Stop any asynchronous requests in progress. Any callbacks associated with the active transaction will be NOT executed.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_ClearFlags | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | flags0, | ||
unsigned int | flags1 | ||
) |
Clears the Interrupt Flags.
i2c | Pointer to I2C registers (selects the I2C block used.) |
flags0 | Flags to clear in interrupt register intfl0. |
flags1 | Flags to clear in interrupt register intfl1. |
void MXC_I2C_ClearRXFIFO | ( | mxc_i2c_regs_t * | i2c | ) |
Removes and discards all bytes currently in the receive FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_ClearTXFIFO | ( | mxc_i2c_regs_t * | i2c | ) |
Removes and discards all bytes currently in the transmit FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_DisableGeneralCall | ( | mxc_i2c_regs_t * | i2c | ) |
Prevents the slave from responding to the general call address.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_DisableInt | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | flags0, | ||
unsigned int | flags1 | ||
) |
Disable Interrupts.
i2c | Pointer to I2C registers (selects the I2C block used.) |
flags0 | Interrupts to be disabled in int->en0 |
flags1 | Interrupts to be disabled in int->en1 |
void MXC_I2C_DisablePreload | ( | mxc_i2c_regs_t * | i2c | ) |
Disable the slave preload mode.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_DMA_GetRXChannel | ( | mxc_i2c_regs_t * | i2c | ) |
Retreive the DMA RX Channel associated with I2C instance.
i2c | Pointer to I2C registers (selects the I2C block used). |
int MXC_I2C_DMA_GetTXChannel | ( | mxc_i2c_regs_t * | i2c | ) |
Retreive the DMA TX Channel associated with I2C instance.
i2c | Pointer to I2C registers (selects the I2C block used). |
int MXC_I2C_DMA_Init | ( | mxc_i2c_regs_t * | i2c, |
mxc_dma_regs_t * | dma, | ||
bool | use_dma_tx, | ||
bool | use_dma_rx | ||
) |
Initializes the DMA for I2C DMA transactions.
This function will release any acquired DMA channels before reacquiring and reconfiguring selected I2C DMA TX or RX channels.
i2c | Pointer to I2C registers (selects the I2C block used). |
dma | Pointer to DMA registers (selects the DMA block used). |
use_dma_tx | If true, acquire and configure DMA TX channel, else release any acquired DMA TX channel. |
use_dma_rx | If true, acquire and configure DMA RX channel, else release any acquired DMA RX channel. |
int MXC_I2C_DMA_SetRequestSelect | ( | mxc_i2c_regs_t * | i2c, |
uint8_t * | txData, | ||
uint8_t * | rxData | ||
) |
Sets the I2C instance's DMA TX/RX request select.
i2c | Pointer to I2C registers (selects the I2C block used). |
txData | Pointer to transmit buffer. |
rxData | Pointer to receive buffer. |
void MXC_I2C_DMACallback | ( | int | ch, |
int | error | ||
) |
The processing function for DMA transactions.
When using the DMA functions, the application must call this function periodically. This can be done from within the DMA Interrupt Handler.
ch | DMA channel |
error | Error status |
void MXC_I2C_EnableGeneralCall | ( | mxc_i2c_regs_t * | i2c | ) |
Enables the slave to respond to the general call address.
i2c | Pointer to I2C registers (selects the I2C block used.) |
void MXC_I2C_EnableInt | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | flags0, | ||
unsigned int | flags1 | ||
) |
Enable Interrupts.
i2c | Pointer to I2C registers (selects the I2C block used.) |
flags0 | Interrupts to be enabled in int->en0 |
flags1 | Interrupts to be enabled in int->en1 |
void MXC_I2C_EnablePreload | ( | mxc_i2c_regs_t * | i2c | ) |
Enables the slave preload mode.
Use this mode to preload the slave TX FIFO with data that can be sent when the slave is addressed for a read operation without software intervention.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetClockStretching | ( | mxc_i2c_regs_t * | i2c | ) |
Determines if clock stretching has been enabled.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetFlags | ( | mxc_i2c_regs_t * | i2c, |
unsigned int * | flags0, | ||
unsigned int * | flags1 | ||
) |
Get the presently set interrupt flags.
i2c | Pointer to I2C registers (selects the I2C block used.) |
flags0 | Pointer to the variable to store status of the interrupt flags in intfl0. |
flags1 | Pointer to the variable to store status of the interrupt flags in intfl1. |
int MXC_I2C_GetFrequency | ( | mxc_i2c_regs_t * | i2c | ) |
Get the frequency of the I2C interface.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetRXFIFOAvailable | ( | mxc_i2c_regs_t * | i2c | ) |
Get the number of bytes currently available in the receive FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetRXThreshold | ( | mxc_i2c_regs_t * | i2c | ) |
Get the current receive threshold level.
i2c | Pointer to I2C registers (selects the I2C block used.) |
unsigned int MXC_I2C_GetTimeout | ( | mxc_i2c_regs_t * | i2c | ) |
Get the current I2C timeout.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetTXFIFOAvailable | ( | mxc_i2c_regs_t * | i2c | ) |
Get the amount of free space available in the transmit FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_GetTXThreshold | ( | mxc_i2c_regs_t * | i2c | ) |
Get the current transmit threshold level.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_Init | ( | mxc_i2c_regs_t * | i2c, |
int | masterMode, | ||
unsigned int | slaveAddr | ||
) |
Initialize and enable I2C peripheral.
i2c | Pointer to I2C registers (selects the I2C block used.) |
masterMode | Whether to put the device in master or slave mode. Use non-zero for master mode, and zero for slave mode. |
slaveAddr | 7-bit or 10-bit address to use when in slave mode. This parameter is ignored when masterMode is non-zero. |
int MXC_I2C_MasterTransaction | ( | mxc_i2c_req_t * | req | ) |
Performs a blocking I2C master transaction.
Performs a blocking I2C master transaction. These actions will be performed:
req | Pointer to details of the transaction |
int MXC_I2C_MasterTransactionAsync | ( | mxc_i2c_req_t * | req | ) |
Performs a non-blocking I2C master transaction.
Performs a non-blocking I2C master transaction. These actions will be performed:
req | Pointer to details of the transaction. The memory used by this parameter must remain available until the callback is executed. |
int MXC_I2C_MasterTransactionDMA | ( | mxc_i2c_req_t * | req | ) |
Performs a non-blocking I2C Master transaction using DMA for reduced time in the ISR. This function initializes the DMA and acquires DMA channels if MXC_I2C_DMA_Init(...) was not called earlier.
It is recommended to initialize the DMA by calling MXC_I2C_DMA_Init(...) function before calling MXC_I2C_MasterTransactionDMA(...). This provides flexibility in setting up generic DMA channel vectors during run-time without knowing what DMA channels will be acquired beforehand.
Performs a non-blocking I2C transaction. These actions will be performed:
req | Pointer to details of the transaction. The memory used by this parameter must remain available until the callback is executed. |
int MXC_I2C_Read | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | bytes, | ||
unsigned int * | len, | ||
int | ack | ||
) |
Read multiple bytes from the I2C bus.
Read multiple byte from the I2C bus. This function assumes the I2C bus is already in the proper state (i.e. a start condition has already been generated and the bus is in the read phase of an I2C transaction).
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer to read the data into. |
len | The number of bytes to read. On return from the function, this will be set to the number of bytes actually received. |
ack | Whether or not to acknowledge the last byte once it is received. All previous bytes will be acknowledged. |
int MXC_I2C_ReadByte | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | byte, | ||
int | ack | ||
) |
Read a single byte from the I2C bus.
Read a single byte from the I2C bus. This function assumes the I2C bus is already in the proper state (i.e. a start condition has already been generated and the bus is in the read phase of an I2C transaction). If the FIFO is empty, this function will return E_UNDERFLOW.
i2c | Pointer to I2C registers (selects the I2C block used.) |
byte | Pointer to the byte to read into. |
ack | Whether or not to acknowledge the byte once received. |
int MXC_I2C_ReadByteInteractive | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | byte, | ||
mxc_i2c_getAck_t | getAck | ||
) |
Read a single byte from the I2C bus.
Read a single byte from the I2C bus. After the byte is received, the provided callback will be used to determine if the byte should be acknowledged or not before continuing with the rest of the transaction. This function assumes the I2C bus is already in the proper state (i.e. a start condition has already been generated and the bus is in the read phase of an I2C transaction). This function must be called with clock stretching enabled.
i2c | Pointer to I2C registers (selects the I2C block used.) |
byte | Pointer to the byte to read into. |
getAck | A function to be called to determine whether or not to acknowledge the byte once received. A non-zero return value will acknowledge the byte. If this parameter is set to NULL or its return value is 0, the byte received will not be acknowledged (i.e., it will be NACKed). |
int MXC_I2C_ReadRXFIFO | ( | mxc_i2c_regs_t * | i2c, |
volatile unsigned char * | bytes, | ||
unsigned int | len | ||
) |
Unloads bytes from the receive FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer to read the data into. |
len | The number of bytes to read. |
int MXC_I2C_ReadRXFIFODMA | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | bytes, | ||
unsigned int | len, | ||
mxc_i2c_dma_complete_cb_t | callback | ||
) |
Unloads bytes from the receive FIFO using DMA for longer reads.
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer to read the data into. |
len | The number of bytes to read. |
callback | The function to call when the read is complete |
int MXC_I2C_ReadyForSleep | ( | mxc_i2c_regs_t * | i2c | ) |
Checks if the given I2C bus can be placed in sleep more.
This functions checks to see if there are any on-going I2C transactions in progress. If there are transactions in progress, the application should wait until the I2C bus is free before entering a low-power state.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_Recover | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | retries | ||
) |
Attempts to recover the I2C bus, ensuring the I2C lines are idle.
Attempts to recover and reset an I2C bus by sending I2C clocks. During each clock cycle, the SDA line is cycled to determine if the master has control of the line. The following steps are performed to create one SCL clock cycle:
i2c | Pointer to I2C registers (selects the I2C block used.) |
retries | Number of times to attempt the clock cycle sequence. |
int MXC_I2C_Reset | ( | mxc_i2c_regs_t * | i2c | ) |
Reset the I2C peripheral.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_SetClockStretching | ( | mxc_i2c_regs_t * | i2c, |
int | enable | ||
) |
Enables or disables clock stretching by the slave.
Enables or disables clock stretching by the slave. This function has no affect when operating as the master.
i2c | Pointer to I2C registers (selects the I2C block used.) |
enable | Enables clock stretching if non-zero, disables if zero. |
int MXC_I2C_SetFrequency | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | hz | ||
) |
Set the frequency of the I2C interface.
i2c | Pointer to I2C registers (selects the I2C block used.) |
hz | The desired frequency in Hertz. |
int MXC_I2C_SetRXThreshold | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | numBytes | ||
) |
Set the receive threshold level.
When operating as a master, the function sets the receive threshold level for when the master should unload the receive FIFO. Smaller values may consume more CPU cycles, but decrease the chances of the master delaying the generation of I2C bus clocks because it has no room in the FIFO to receive data. Larger values may consume fewer CPU cycles, but risk delays of the I2C clock. When operating as a slave, this function sets the number of bytes the slave transaction functions should receive before issuing a call to their callback function. Smaller values may consume more CPU cycles, but reduce the risk of missing data from the master due to the recieve FIFO being full. Larger values may reduce the number of CPU cycles, but may cause bytes sent from the master to be missed.
i2c | Pointer to I2C registers (selects the I2C block used.) |
numBytes | The threshold level to set. This value must be between 0 and 8 inclusive. |
int MXC_I2C_SetSlaveAddr | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | slaveAddr, | ||
int | idx | ||
) |
Set slave address for I2C instances acting as slaves on the bus.
i2c | Pointer to I2C registers (selects the I2C block used.) |
slaveAddr | 7-bit or 10-bit address to use when in slave mode. This parameter is ignored when masterMode is non-zero. |
idx | Index of the I2C slave. |
void MXC_I2C_SetTimeout | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | timeout | ||
) |
Set the I2C Timeout.
The I2C timeout determines the amount of time the master will wait while the slave is stretching the clock, and the amount of time the slave will stretch the clock while waiting for software to unload the fifo.
i2c | Pointer to I2C registers (selects the I2C block used.) |
timeout | Timeout in uS |
int MXC_I2C_SetTXThreshold | ( | mxc_i2c_regs_t * | i2c, |
unsigned int | numBytes | ||
) |
Set the transmit threshold level.
When operating as a master, the function sets the transmit threshold level for when the master should add additional bytes to the transmit FIFO. Larger values may consume more CPU cycles, but decrease the chances of the master delaying the generation of I2C bus clocks because it has no data in the FIFO to transmit. Smaller values may consume fewer CPU cycles, but risk delays of the I2C clock. When operating as a slave, this function sets the number of bytes the slave transaction functions should transmit before issuing a call to their callback function. Larger values may consume more CPU cycles, but reduce the risk of not having data ready when the master requests it. Smaller values may reduce the number of CPU cycles, but may cause the master to read from an empty FIFO. (The master will read 0xFF in this case.)
i2c | Pointer to I2C registers (selects the I2C block used.) |
numBytes | The threshold level to set. This value must be between 0 and 8 inclusive. |
int MXC_I2C_Shutdown | ( | mxc_i2c_regs_t * | i2c | ) |
Disable and shutdown I2C peripheral.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_SlaveTransaction | ( | mxc_i2c_regs_t * | i2c, |
mxc_i2c_slave_handler_t | callback | ||
) |
Performs a blocking I2C slave transaction.
Performs a blocking I2C slave transaction. This function will block until a complete transaction with this slave has been performed. A transaction begins with the master addressing the slave and ends with a repeated start condition, a stop condition, or a bus error. The provided callback function will be called for these events:
If clock stretching is disabled, careful attention must be paid to the timing of the callback to avoid losing data on write or unintentionally nacking a read.
i2c | Pointer to I2C registers (selects the I2C block used.) |
callback | The function to be called when an I2C event occurs. |
int MXC_I2C_SlaveTransactionAsync | ( | mxc_i2c_regs_t * | i2c, |
mxc_i2c_slave_handler_t | callback | ||
) |
Performs a non-blocking I2C slave transaction.
Performs a non-blocking I2C slave transaction. This request will remain active until a complete transaction with this slave has been performed. A transaction begins with the master begins with the master addressing the slave and ends with a repeated start condition, a stop condition, or a bus error. The provided callback function will be called for these events:
If clock stretching is disabled, careful attention must be paid to the timing of the callback to avoid losing data on write or unintentionally nacking a read.
i2c | Pointer to I2C registers (selects the I2C block used.) |
callback | The function to be called when an I2C event occurs. |
int MXC_I2C_Start | ( | mxc_i2c_regs_t * | i2c | ) |
Generate a start (or repeated start) condition on the I2C bus.
Generate a start (or repeated start) condition on the I2C bus. This function may opt to delay the actual generation of the start condition until data is actually transferred.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_Stop | ( | mxc_i2c_regs_t * | i2c | ) |
Generate a stop condition on the I2C bus.
i2c | Pointer to I2C registers (selects the I2C block used.) |
int MXC_I2C_Write | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | bytes, | ||
unsigned int * | len | ||
) |
Write multiple bytes to the I2C bus.
Write multiple bytes to the I2C bus. This function assumes the I2C bus is already in the proper state (i.e. a start condition has already been generated and the bus is in the write phase of an I2C transaction).
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer containing the bytes to transmit. |
len | The number of bytes to write. On return from the function, this will be set to the number of bytes actually transmitted. |
int MXC_I2C_WriteByte | ( | mxc_i2c_regs_t * | i2c, |
unsigned char | byte | ||
) |
Write a single byte to the I2C bus.
Write a single byte to the I2C bus. This function assumes the I2C bus is already in the proper state (i.e. a start condition has already been generated and the bus is in the write phase of an I2C transaction). If any bytes are pending in the FIFO (i.e. in the case of clock stretching), this function will return E_OVERFLOW.
i2c | Pointer to I2C registers (selects the I2C block used.) |
byte | The byte to transmit. |
int MXC_I2C_WriteTXFIFO | ( | mxc_i2c_regs_t * | i2c, |
volatile unsigned char * | bytes, | ||
unsigned int | len | ||
) |
Loads bytes into the transmit FIFO.
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer containing the bytes to write |
len | The number of bytes to write. |
int MXC_I2C_WriteTXFIFODMA | ( | mxc_i2c_regs_t * | i2c, |
unsigned char * | bytes, | ||
unsigned int | len, | ||
mxc_i2c_dma_complete_cb_t | callback | ||
) |
Loads bytes into the transmit FIFO using DMA for longer writes.
i2c | Pointer to I2C registers (selects the I2C block used.) |
bytes | The buffer containing the bytes to write |
len | The number of bytes to write. |
callback | The function to call when the read is complete |