55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
|
/* ST Microelectronics IIS2MDC 3-axis magnetometer sensor
|
||
|
*
|
||
|
* Copyright (c) 2020 STMicroelectronics
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Datasheet:
|
||
|
* https://www.st.com/resource/en/datasheet/iis2mdc.pdf
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <drivers/i2c.h>
|
||
|
#include <logging/log.h>
|
||
|
|
||
|
#include "iis2mdc.h"
|
||
|
|
||
|
#ifdef DT_ST_IIS2MDC_BUS_I2C
|
||
|
|
||
|
#define LOG_LEVEL CONFIG_SENSOR_LOG_LEVEL
|
||
|
LOG_MODULE_DECLARE(IIS2MDC);
|
||
|
|
||
|
static int iis2mdc_i2c_read(struct device *dev, u8_t reg_addr,
|
||
|
u8_t *value, u16_t len)
|
||
|
{
|
||
|
struct iis2mdc_data *data = dev->driver_data;
|
||
|
const struct iis2mdc_config *cfg = dev->config->config_info;
|
||
|
|
||
|
return i2c_burst_read(data->bus, cfg->i2c_slv_addr,
|
||
|
reg_addr, value, len);
|
||
|
}
|
||
|
|
||
|
static int iis2mdc_i2c_write(struct device *dev, u8_t reg_addr,
|
||
|
u8_t *value, u16_t len)
|
||
|
{
|
||
|
struct iis2mdc_data *data = dev->driver_data;
|
||
|
const struct iis2mdc_config *cfg = dev->config->config_info;
|
||
|
|
||
|
return i2c_burst_write(data->bus, cfg->i2c_slv_addr,
|
||
|
reg_addr, value, len);
|
||
|
}
|
||
|
|
||
|
int iis2mdc_i2c_init(struct device *dev)
|
||
|
{
|
||
|
struct iis2mdc_data *data = dev->driver_data;
|
||
|
|
||
|
data->ctx_i2c.read_reg = (stmdev_read_ptr) iis2mdc_i2c_read;
|
||
|
data->ctx_i2c.write_reg = (stmdev_write_ptr) iis2mdc_i2c_write;
|
||
|
|
||
|
data->ctx = &data->ctx_i2c;
|
||
|
data->ctx->handle = dev;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
#endif /* DT_ST_IIS2MDC_BUS_I2C */
|