lps22hh_i2c.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* ST Microelectronics LPS22HH pressure and temperature sensor
  2. *
  3. * Copyright (c) 2019 STMicroelectronics
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. *
  7. * Datasheet:
  8. * https://www.st.com/resource/en/datasheet/lps22hh.pdf
  9. */
  10. #define DT_DRV_COMPAT st_lps22hh
  11. #include <string.h>
  12. #include <drivers/i2c.h>
  13. #include <logging/log.h>
  14. #include "lps22hh.h"
  15. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  16. LOG_MODULE_DECLARE(LPS22HH, CONFIG_SENSOR_LOG_LEVEL);
  17. static int lps22hh_i2c_read(struct lps22hh_data *data, uint8_t reg_addr,
  18. uint8_t *value, uint16_t len)
  19. {
  20. const struct lps22hh_config *cfg = data->dev->config;
  21. return i2c_burst_read(data->bus, cfg->i2c_slv_addr,
  22. reg_addr, value, len);
  23. }
  24. static int lps22hh_i2c_write(struct lps22hh_data *data, uint8_t reg_addr,
  25. uint8_t *value, uint16_t len)
  26. {
  27. const struct lps22hh_config *cfg = data->dev->config;
  28. return i2c_burst_write(data->bus, cfg->i2c_slv_addr,
  29. reg_addr, value, len);
  30. }
  31. int lps22hh_i2c_init(const struct device *dev)
  32. {
  33. struct lps22hh_data *data = dev->data;
  34. data->ctx_i2c.read_reg = (stmdev_read_ptr) lps22hh_i2c_read;
  35. data->ctx_i2c.write_reg = (stmdev_write_ptr) lps22hh_i2c_write;
  36. data->ctx = &data->ctx_i2c;
  37. data->ctx->handle = data;
  38. return 0;
  39. }
  40. #endif /* DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c) */