summaryrefslogtreecommitdiff
path: root/include/arch/posix/driver/i2c.h
blob: 93127e3d6913a31de4e7ae206675669a9526060a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright 2021 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#ifndef I2C_H
#define I2C_H

class I2C {
	private:
		I2C(const I2C &copy);
		const char *i2cbus;

	public:
		I2C (const char *i2cbus) : i2cbus(i2cbus) {}
		signed char setup();
		signed char xmit(unsigned char address,
				unsigned char tx_len, unsigned char *tx_buf,
				unsigned char rx_len, unsigned char *rx_buf);
};

extern I2C i2c;

#endif