mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Add support for mpu9250 accelerometer over I2C bus. Signed-off-by: Harry Beyel <harry3b9@gmail.com>
14 lines
215 B
C
14 lines
215 B
C
#ifndef __I2CCMDS_H
|
|
#define __I2CCMDS_H
|
|
|
|
#include <inttypes.h>
|
|
#include "board/gpio.h" // i2c_config
|
|
|
|
struct i2cdev_s {
|
|
struct i2c_config i2c_config;
|
|
};
|
|
|
|
struct i2cdev_s *i2cdev_oid_lookup(uint8_t oid);
|
|
|
|
#endif
|