aboutsummaryrefslogtreecommitdiff
path: root/client/i2c.cpp
blob: c8b2dc8f81db11c5f68c524b65b68c4f1a9d51e0 (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
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include <stdlib.h>

#include "i2ctcpv1.h"
#include "rl.h"
#include "sock.h"
#include "xxd.h"

#include "pb.h"
#include "pb-types.h"

bool i2c_dump_send = true;
bool i2c_dump_recv = true;

void i2c_send(uint16_t addr, const char * data, size_t data_size) {
	i2ctcp_msg_t msg = {
		.addr = addr,
		.data = (char *) data,
		.length = data_size,
	};

	char* packed;
	size_t size;
	if (!i2ctcp_write(&msg, &packed, &size)) return;

	sock->send(packed, size);
	if (i2c_dump_send) {
		printf("[%s] addr(0x%02x) data(0x%02lx):\n", __FUNCTION__, addr, data_size);
		xxd(data, data_size);
	}

	free(packed);
}

void i2c_recv(const char * data, size_t data_size) {
	if (i2c_dump_recv) {
		_rl_printf_start();
		printf("[%s] data(0x%02lx):\n", __FUNCTION__, data_size);
		xxd(data, data_size);
		_rl_printf_stop();
	}
}