i2c_common.c 668 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Logging of I2C messages
  3. *
  4. * Copyright 2020 Google LLC
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #include <stdio.h>
  9. #include <drivers/i2c.h>
  10. #define LOG_LEVEL CONFIG_I2C_LOG_LEVEL
  11. #include <logging/log.h>
  12. LOG_MODULE_REGISTER(i2c);
  13. void i2c_dump_msgs(const char *name, const struct i2c_msg *msgs,
  14. uint8_t num_msgs, uint16_t addr)
  15. {
  16. LOG_DBG("I2C msg: %s, addr=%x", name, addr);
  17. for (unsigned int i = 0; i < num_msgs; i++) {
  18. const struct i2c_msg *msg = &msgs[i];
  19. LOG_DBG(" %c len=%02x: ",
  20. msg->flags & I2C_MSG_READ ? 'R' : 'W', msg->len);
  21. if (!(msg->flags & I2C_MSG_READ)) {
  22. LOG_HEXDUMP_DBG(msg->buf, msg->len, "contents:");
  23. }
  24. }
  25. }