2021-11-28 18:28:19 +00:00
|
|
|
/**
|
2022-01-05 16:10:18 +00:00
|
|
|
* @file furi_hal_i2c.h
|
2021-11-28 18:28:19 +00:00
|
|
|
* I2C HAL API
|
|
|
|
*/
|
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_i2c_config.h>
|
2021-05-18 09:23:14 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
/** Early Init I2C */
|
|
|
|
void furi_hal_i2c_init_early();
|
|
|
|
|
|
|
|
/** Early DeInit I2C */
|
|
|
|
void furi_hal_i2c_deinit_early();
|
|
|
|
|
|
|
|
/** Init I2C */
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_i2c_init();
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-11-28 18:28:19 +00:00
|
|
|
/** Acquire i2c bus handle
|
|
|
|
*
|
|
|
|
* @return Instance of FuriHalI2cBus
|
|
|
|
*/
|
|
|
|
void furi_hal_i2c_acquire(FuriHalI2cBusHandle* handle);
|
|
|
|
|
|
|
|
/** Release i2c bus handle
|
|
|
|
*
|
|
|
|
* @param bus instance of FuriHalI2cBus aquired in `furi_hal_i2c_acquire`
|
|
|
|
*/
|
|
|
|
void furi_hal_i2c_release(FuriHalI2cBusHandle* handle);
|
|
|
|
|
|
|
|
/** Perform I2C tx transfer
|
|
|
|
*
|
2021-11-30 22:07:17 +00:00
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param address I2C slave address
|
|
|
|
* @param data pointer to data buffer
|
|
|
|
* @param size size of data buffer
|
|
|
|
* @param timeout timeout in ticks
|
2021-11-28 18:28:19 +00:00
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_tx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
const uint8_t address,
|
|
|
|
const uint8_t* data,
|
|
|
|
const uint8_t size,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
2021-11-28 18:28:19 +00:00
|
|
|
/** Perform I2C rx transfer
|
|
|
|
*
|
2021-11-30 22:07:17 +00:00
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param address I2C slave address
|
|
|
|
* @param data pointer to data buffer
|
|
|
|
* @param size size of data buffer
|
|
|
|
* @param timeout timeout in ticks
|
2021-11-28 18:28:19 +00:00
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_rx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
const uint8_t address,
|
|
|
|
uint8_t* data,
|
|
|
|
const uint8_t size,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
2021-11-28 18:28:19 +00:00
|
|
|
/** Perform I2C tx and rx transfers
|
|
|
|
*
|
2021-11-30 22:07:17 +00:00
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param address I2C slave address
|
|
|
|
* @param tx_data pointer to tx data buffer
|
|
|
|
* @param tx_size size of tx data buffer
|
|
|
|
* @param rx_data pointer to rx data buffer
|
|
|
|
* @param rx_size size of rx data buffer
|
|
|
|
* @param timeout timeout in ticks
|
2021-11-28 18:28:19 +00:00
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_trx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
const uint8_t address,
|
|
|
|
const uint8_t* tx_data,
|
|
|
|
const uint8_t tx_size,
|
|
|
|
uint8_t* rx_data,
|
|
|
|
const uint8_t rx_size,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
2022-01-12 15:29:28 +00:00
|
|
|
/** Check if I2C device presents on bus
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true if device present and is ready, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_is_device_ready(FuriHalI2cBusHandle* handle, uint8_t i2c_addr, uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device register read (8-bit)
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param reg_addr register address
|
|
|
|
* @param data pointer to register value
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_read_reg_8(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device register read (16-bit)
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param reg_addr register address
|
|
|
|
* @param data pointer to register value
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_read_reg_16(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint16_t* data,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device memory read
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param mem_addr memory start address
|
|
|
|
* @param data pointer to data buffer
|
|
|
|
* @param len size of data buffer
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_read_mem(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t mem_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint8_t len,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device register write (8-bit)
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param reg_addr register address
|
|
|
|
* @param data register value
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_write_reg_8(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint8_t data,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device register write (16-bit)
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param reg_addr register address
|
|
|
|
* @param data register value
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_write_reg_16(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint16_t data,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
|
|
|
/** Perform I2C device memory
|
|
|
|
*
|
|
|
|
* @param handle pointer to FuriHalI2cBusHandle instance
|
|
|
|
* @param i2c_addr I2C slave address
|
|
|
|
* @param mem_addr memory start address
|
|
|
|
* @param data pointer to data buffer
|
|
|
|
* @param len size of data buffer
|
|
|
|
* @param timeout timeout in ticks
|
|
|
|
*
|
|
|
|
* @return true on successful transfer, false otherwise
|
|
|
|
*/
|
|
|
|
bool furi_hal_i2c_write_mem(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t mem_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint8_t len,
|
|
|
|
uint32_t timeout);
|
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|