aboutsummaryrefslogtreecommitdiffstats
path: root/src/i2ccmds.h
blob: 49c05c93761f8cfd817a5812d20e9f1917cb5958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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