no-OS
|
Implementation of chibios i2c driver. More...
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "no_os_util.h"
#include "no_os_alloc.h"
#include "no_os_i2c.h"
#include "chibios_i2c.h"
Functions | |
int | chibios_i2c_init (struct no_os_i2c_desc **desc, const struct no_os_i2c_init_param *param) |
Initialize the I2C communication peripheral. More... | |
int | chibios_i2c_remove (struct no_os_i2c_desc *desc) |
Free the resources allocated by no_os_i2c_init(). More... | |
int | chibios_i2c_write (struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit) |
I2C write transaction as master. More... | |
int | chibios_i2c_read (struct no_os_i2c_desc *desc, uint8_t *data, uint8_t bytes_number, uint8_t stop_bit) |
I2C read transaction as master. More... | |
Variables | |
const struct no_os_i2c_platform_ops | chibios_i2c_ops |
chibios platform specific I2C platform ops structure More... | |
Implementation of chibios i2c driver.
Copyright 2023(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int chibios_i2c_init | ( | struct no_os_i2c_desc ** | desc, |
const struct no_os_i2c_init_param * | param | ||
) |
Initialize the I2C communication peripheral.
desc | - The I2C descriptor. |
param | - The structure that contains the I2C parameters. |
int chibios_i2c_read | ( | struct no_os_i2c_desc * | desc, |
uint8_t * | data, | ||
uint8_t | bytes_number, | ||
uint8_t | stop_bit | ||
) |
I2C read transaction as master.
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. |
int chibios_i2c_remove | ( | struct no_os_i2c_desc * | desc | ) |
Free the resources allocated by no_os_i2c_init().
desc | - The I2C descriptor. |
int chibios_i2c_write | ( | struct no_os_i2c_desc * | desc, |
uint8_t * | data, | ||
uint8_t | bytes_number, | ||
uint8_t | stop_bit | ||
) |
I2C write transaction as master.
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. |
const struct no_os_i2c_platform_ops chibios_i2c_ops |
chibios platform specific I2C platform ops structure
chibios specific I2C platform ops structure