1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00
betaflight/src/main/drivers/bus_i2c_busdev.c
2025-01-29 06:20:12 +11:00

103 lines
2.8 KiB
C

/*
* This file is part of Cleanflight and Betaflight.
*
* Cleanflight and Betaflight are free software. You can redistribute
* this software and/or modify this software under the terms of the
* GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* Cleanflight and Betaflight are distributed in the hope that they
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software.
*
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "platform.h"
#if defined(USE_I2C)
#include "drivers/bus.h"
#include "drivers/bus_i2c.h"
#include "drivers/bus_i2c_busdev.h"
static uint8_t i2cRegisteredDeviceCount = 0;
bool i2cBusWriteRegister(const extDevice_t *dev, uint8_t reg, uint8_t data)
{
return i2cWrite(dev->bus->busType_u.i2c.device, dev->busType_u.i2c.address, reg, data);
}
bool i2cBusWriteRegisterStart(const extDevice_t *dev, uint8_t reg, uint8_t data)
{
// Need a static value, not on the stack
static uint8_t byte;
if (i2cBusy(dev->bus->busType_u.i2c.device, NULL)) {
return false;
}
byte = data;
return i2cWriteBuffer(dev->bus->busType_u.i2c.device, dev->busType_u.i2c.address, reg, sizeof(byte), &byte);
}
bool i2cBusReadRegisterBuffer(const extDevice_t *dev, uint8_t reg, uint8_t *data, uint8_t length)
{
return i2cRead(dev->bus->busType_u.i2c.device, dev->busType_u.i2c.address, reg, length, data);
}
uint8_t i2cBusReadRegister(const extDevice_t *dev, uint8_t reg)
{
uint8_t data;
i2cRead(dev->bus->busType_u.i2c.device, dev->busType_u.i2c.address, reg, 1, &data);
return data;
}
bool i2cBusReadRegisterBufferStart(const extDevice_t *dev, uint8_t reg, uint8_t *data, uint8_t length)
{
return i2cReadBuffer(dev->bus->busType_u.i2c.device, dev->busType_u.i2c.address, reg, length, data);
}
bool i2cBusBusy(const extDevice_t *dev, bool *error)
{
return i2cBusy(dev->bus->busType_u.i2c.device, error);
}
bool i2cBusSetInstance(extDevice_t *dev, uint32_t device)
{
// I2C bus structures to associate with external devices
static busDevice_t i2cBus[I2CDEV_COUNT];
if ((device < 1) || (device > I2CDEV_COUNT)) {
return false;
}
dev->bus = &i2cBus[I2C_CFG_TO_DEV(device)];
dev->bus->busType = BUS_TYPE_I2C;
dev->bus->busType_u.i2c.device = I2C_CFG_TO_DEV(device);
return true;
}
void i2cBusDeviceRegister(const extDevice_t *dev)
{
UNUSED(dev);
i2cRegisteredDeviceCount++;
}
uint8_t i2cGetRegisteredDeviceCount(void)
{
return i2cRegisteredDeviceCount;
}
#endif