summaryrefslogtreecommitdiff
path: root/src/driver/ds2482.cc
blob: 4e0942d823260119a944bd63e28a9d5d4a9fef08 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright 2021 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * DS2482-100 Single-Channel 1-Wire Master
 */
#include "driver/ds2482.h"
#if defined(CONFIG_meta_driver_hardware_i2c)
#include "driver/i2c.h"
#elif defined (CONFIG_driver_softi2c)
#include "driver/soft_i2c.h"
#endif
#include "arch.h"

void DS2482::setup()
{
	txbuf[0] = 0xf0;
	i2c.xmit(address, 1, txbuf, 0, rxbuf);
	txbuf[0] = 0xd2;
	txbuf[1] = 0xf0; // default setting: passive pull-up, standard speed
	i2c.xmit(address, 2, txbuf, 0, rxbuf);
}

void DS2482::busReset()
{
	txbuf[0] = 0xb4;
	i2c.xmit(address, 1, txbuf, 0, rxbuf);
}

unsigned char DS2482::status()
{
	txbuf[0] = 0xe1;
	txbuf[0] = 0xf0;
	i2c.xmit(address, 2, txbuf, 1, rxbuf);
	return rxbuf[0];
}

void DS2482::readROM(unsigned char *data, unsigned char len)
{
	busReset();
	arch.delay_ms(2); // reset low time (630us) + reset high time (614us)
	txbuf[0] = 0xa5;
	txbuf[1] = 0x33;
	i2c.xmit(address, 2, txbuf, 0, rxbuf);
	arch.delay_us(800);
	for (unsigned char i = 0; i < len; i++) {
		txbuf[0] = 0x96;
		i2c.xmit(address, 1, txbuf, 0, rxbuf);
		arch.delay_us(800);
		txbuf[0] = 0xe1;
		txbuf[1] = 0xe1;
		i2c.xmit(address, 2, txbuf, 1, rxbuf);
		data[i] = rxbuf[0];
	}
}

DS2482 ds2482(0x18);