summaryrefslogtreecommitdiff
path: root/commandline/i2cget.c
blob: ed453ac83010c7629914e879899a14a4a1ed4b42 (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
25
26
27
28
29
30
31
32
33
34
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "i2c-util.h"

int main(int argc, char **argv)
{
	int address, command;
	unsigned char ret;

	i2c_init();
	i2c_start();

	if (argc < 3) {
		fputs("Usage: vusb-i2cget <address> <register>", stderr);
		return 1;
	}

	address = atoi(argv[1]);
	command = atoi(argv[2]);
	i2c_tx_byte((address << 1) | 0);
	i2c_tx_byte(command);
	i2c_start();
	i2c_tx_byte((address << 1) | 1);
	ret = i2c_rx_byte();

	i2c_stop();
	i2c_deinit();

	printf("%i\n", ret);

	return 0;
}