no-OS
Loading...
Searching...
No Matches
ftd2xx_i2c.c File Reference
#include "no_os_error.h"
#include "no_os_i2c.h"
#include "no_os_alloc.h"
#include "no_os_print_log.h"
#include "ftd2xx_i2c.h"
#include "ftd2xx_platform.h"
#include "libmpsse_i2c.h"
Include dependency graph for ftd2xx_i2c.c:

Functions

int ftd2xx_i2c_init (struct no_os_i2c_desc **desc, const struct no_os_i2c_init_param *param)
 Initialize the I2C communication peripheral.
 
int ftd2xx_i2c_write (struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit)
 I2C write transaction as master.
 
int ftd2xx_i2c_read (struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit)
 I2C read transaction as master.
 
int ftd2xx_i2c_remove (struct no_os_i2c_desc *desc)
 Free the resources allocated by no_os_i2c_init().
 

Variables

const struct no_os_i2c_platform_ops ftd2xx_i2c_ops
 ftd2xx platform specific I2C platform ops structure
 

Function Documentation

◆ ftd2xx_i2c_init()

int ftd2xx_i2c_init ( struct no_os_i2c_desc ** desc,
const struct no_os_i2c_init_param * param )

Initialize the I2C communication peripheral.

Parameters
desc- The I2C descriptor.
param- The structure that contains the I2C parameters.
Returns
0 in case of success, -1 otherwise.

◆ ftd2xx_i2c_read()

int ftd2xx_i2c_read ( struct no_os_i2c_desc * desc,
uint8_t * data,
uint8_t bytes_number,
uint8_t stop_bit )

I2C read transaction as master.

Parameters
desc- The I2C descriptor.
data- The buffer where received data is to be stored.
bytes_number- Number of bytes to receive.
stop_bit- Specifis whether to end the transaction with a stop bit.
Returns
0 in case of success, -1 otherwise.

◆ ftd2xx_i2c_remove()

int ftd2xx_i2c_remove ( struct no_os_i2c_desc * desc)

Free the resources allocated by no_os_i2c_init().

Parameters
desc- The I2C descriptor.
Returns
0 in case of success, -1 otherwise.

◆ ftd2xx_i2c_write()

int ftd2xx_i2c_write ( struct no_os_i2c_desc * desc,
uint8_t * data,
uint8_t bytes_number,
uint8_t stop_bit )

I2C write transaction as master.

Parameters
desc- The I2C descriptor.
data- The buffer with the data to transmit.
bytes_number- Number of bytes in the buffer.
stop_bit- Specifis whether to end the transaction with a stop bit.
Returns
0 in case of success, -1 otherwise.

Variable Documentation

◆ ftd2xx_i2c_ops

const struct no_os_i2c_platform_ops ftd2xx_i2c_ops
Initial value:
= {
.i2c_ops_init = &ftd2xx_i2c_init,
.i2c_ops_write = &ftd2xx_i2c_write,
.i2c_ops_read = &ftd2xx_i2c_read,
.i2c_ops_remove = &ftd2xx_i2c_remove
}
int ftd2xx_i2c_remove(struct no_os_i2c_desc *desc)
Free the resources allocated by no_os_i2c_init().
Definition ftd2xx_i2c.c:209
int ftd2xx_i2c_write(struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit)
I2C write transaction as master.
Definition ftd2xx_i2c.c:140
int ftd2xx_i2c_read(struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit)
I2C read transaction as master.
Definition ftd2xx_i2c.c:176
Structure holding the initialization parameters for ftd2xx platform specific I2C parameters.
Definition ftd2xx_i2c.h:45

ftd2xx platform specific I2C platform ops structure