forked from smurfix/owslave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds2423.c
391 lines (354 loc) · 7.94 KB
/
ds2423.c
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/*
* Copyright © 2010, Matthias Urlichs <matthias@urlichs.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License (included; see the file LICENSE)
* for more details.
*/
/* This code implements the DS2423 counter (obsolete and no-longer-produced).
* Only the features necessary for reading the physical counters are
* implemented; the rest is of no particular interest. Yet.
*/
/* Input pins are PA0 thru PA7, depending on the definition of NCOUNTERS.
If ANALOG is defined, these pins are read by the ADC and an adaptive
hysteresis is used to trigger the counters, otherwise they are used
as straight digital inputs. */
/* if SLOW is defined, a decaying average (factor 2^-SLOW) is used to
lowpass-filter the (analog) result. Use this if you want to monitor e.g.
a blinking LED, while not being distracted by ambient neon lighting.
Note that sample frequency is approx. 8 kHz / NCOUNTERS.
*/
#ifndef NCOUNTERS
#define NCOUNTERS 2
#endif
#include <avr/io.h>
#include <avr/interrupt.h>
#include <string.h>
#include "onewire.h"
#include "features.h"
#define C_WRITE_SCRATCHPAD 0x0F // TODO
#define C_READ_SCRATCHPAD 0xAA // TODO
#define C_COPY_SCRATCHPAD 0x55 // TODO
#define C_READ_MEM 0xF0 // TODO
#define C_READ_MEM_COUNTER 0xA5 // TODO
#ifdef DEBUG
uint8_t debug_state;
#endif
// The ADLAR bit is either in ADMUX or in ADCSRB.
// If unknown, use a left shift in software.
#if defined(__AVR_ATtiny84__)
#define ADLARREG ADCSRB
#define ADLARMUX 0
#elif defined (__AVR_ATmega168__)
#define ADLARMUX (1<<ADLAR)
#else
#warning Where is the ADLAR bit?
#define NO_ADLAR
#endif
#ifdef ANALOG
// Minimal hysteresis between hi and lo states
#define HYST 100 // initial hysteresis; approx. 500 mV
// At 8 KHz sampling rate (approx), 1/10th second should be enough
//#define SLOW 4 // decay filter for lowpass-filtering
static uint16_t last[NCOUNTERS];
static uint16_t hyst[NCOUNTERS];
#ifdef SLOW
#if SLOW > 5
static uint32_t decay[NCOUNTERS];
#else
static uint16_t decay[NCOUNTERS];
#endif
#endif
static uint8_t cur_adc,bstate;
static uint16_t samples;
#else // !ANALOG
static uint8_t obits,cbits;
#endif
static uint32_t counter[NCOUNTERS];
static uint8_t unchecked;
static uint8_t byte_at(uint16_t adr)
{
#ifdef DEBUG
if((adr & 0x1F) == 0x1F) {
uint8_t res = debug_state;
if(debug_state == 0)
debug_state = 1;
return res;
} else
#endif
{
return 0xFF;
}
}
void do_mem_counter(void)
{
uint16_t crc = 0;
uint8_t b,c;
uint8_t len;
uint16_t adr;
/*
The following code does:
* receive address (2 bytes), add them to CRC
* send 1..32 bytes (0xFF), add them to CRC
* send counter (4 bytes, CRC)
* send 4 zero bytes
* send inverted CRC
This is all very straightforward, except that the CRC calculation
is delayed somewhat: the time between recv_byte_in() and xmit_byte()
is only a bit wide, which may not be enough time to add a CRC byte.
*/
recv_byte();
crc = crc16(crc,C_READ_MEM_COUNTER);
b = recv_byte_in();
recv_byte();
crc = crc16(crc,b);
adr = b;
b = recv_byte_in();
adr |= b<<8;
if(1) {
c = byte_at(adr);
xmit_byte(c);
crc = crc16(crc,b);
} else {
xmore:
c = byte_at(adr);
xmit_byte(c);
}
crc = crc16(crc,c);
len = 0x1F - (adr & 0x1F);
adr++;
while(len) {
len--;
c = byte_at(adr++);
xmit_byte(c);
crc = crc16(crc,c);
}
#define SEND(_x) do { \
uint32_t x; \
cli(); \
x = (_x); \
sei(); \
b = x ; xmit_byte(b); crc = crc16(crc,b); \
b = x>> 8; xmit_byte(b); crc = crc16(crc,b); \
b = x>>16; xmit_byte(b); crc = crc16(crc,b); \
b = x>>24; xmit_byte(b); crc = crc16(crc,b); \
} while(0)
b = (0x10 - (adr>>5));
if (b < NCOUNTERS)
SEND(counter[b]);
#if defined(ANALOG) && NCOUNTERS == 1
else if(b == 1) // quick&dirty debugging
SEND(last[0]);
#endif
else {
DBG_C('@');
DBG_Y(adr);
SEND(0xFFFFFFFF);
}
SEND(0);
#undef SEND
crc = ~crc;
xmit_byte(crc);
xmit_byte(crc >> 8);
if(adr & 0x1FF) {
crc = 0;
goto xmore;
}
while(1)
xmit_bit(1);
}
void do_command(uint8_t cmd)
{
if(cmd == C_READ_MEM_COUNTER) {
DBG_P(":I");
do_mem_counter();
} else {
DBG_P("?CI");
DBG_X(cmd);
set_idle();
}
}
#ifdef ANALOG
void start_adc(void)
{
#ifdef DEBUG
if(debug_state == 1)
debug_state = 2;
else
return;
#endif
ADMUX = cur_adc | (1<<REFS0) | ADLARMUX;
ADCSRA |= (1<<ADSC);
#ifdef DEBUG
DBG_P("ADC"); DBG_X(cur_adc); DBG_C(';');
#endif
}
#endif
void check_adc(void)
{
#ifdef ANALOG
uint16_t res;
uint8_t cur;
#ifdef DEBUG
if(debug_state == 1)
start_adc();
if(debug_state != 2)
return;
#endif
if(!(ADCSRA & (1<<ADIF)))
return;
res = ADC;
#ifdef NO_ADLAR
res <<= 5;
#else
res >>= 1;
#endif
#ifdef DEBUG
DBG_P(" ADC"); DBG_X(cur_adc); DBG_C('='); DBG_Y(res); DBG_NL();
#endif
cur = cur_adc;
if(cur_adc)
cur_adc--;
else
cur_adc = NCOUNTERS-1;
start_adc();
// Decaying average. To avoid losing precision, use 32 bits if SLOW>5.
// (GCC generates spectacularly-inefficient code for this.)
#ifdef SLOW
{
#if SLOW > 5
uint32_t last = decay[cur];
uint32_t ires = res << (16-SLOW);
ires += last - (last>>SLOW);
decay[cur] = ires;
res = ires>>16;
#else
uint16_t last = decay[cur];
res = (res>>SLOW) + last - (last>>SLOW);
decay[cur] = res;
#endif
}
#endif
#ifdef DEBUG
DBG_P("res="); DBG_Y(res); DBG_P(" bstate="); DBG_X(bstate); DBG_P(" last="); DBG_Y(last[cur]); DBG_P(" hyst="); DBG_Y(hyst[cur]); DBG_NL();
#endif
if(!(bstate&(1<<cur))) {
if (res < last[cur]) {
last[cur] = res;
} else if (res > hyst[cur]+last[cur]) {
bstate |= (1<<cur);
if(samples)
counter[cur]++;
last[cur] = res;
}
} else {
if (res > last[cur])
last[cur] = res;
else if(res+hyst[cur] < last[cur]) {
bstate &= ~(1<<cur);
last[cur] = res;
}
}
if(samples < 0xFFFF)
samples++;
#else
uint8_t i = 0;
uint8_t now_bits,nbits,bits,ocbits;
cli();
now_bits = ADPIN;
nbits = now_bits;
bits = cbits;
ocbits = obits;
cbits = 0;
sei();
while(i < NCOUNTERS) {
// Count a 0-1 transition. We may have missed the subsequent 1-0.
if ((bits & 0x01) && ((nbits & 0x01) || !(ocbits & 0x01)))
counter[i]++;
ocbits >>= 1;
nbits >>= 1;
bits >>= 1;
i++;
}
obits = now_bits;
#endif
unchecked = 0;
#ifdef DEBUG
debug_state = 0;
#endif
}
#ifndef ANALOG
ISR(ADPIN_vect)
{
uint8_t nbits = ADPIN;
nbits ^= obits; // 'nbits' now contains the changed bits
cbits |= nbits;
}
#endif
void update_idle(uint8_t bits)
{
//DBG_C('\\');
if(bits > 0 || unchecked > 100)
check_adc();
else if((ADCSRA & (1<<ADIF)) && (unchecked < 0xFF))
unchecked++;
#ifdef ANALOG
if (bits < NCOUNTERS)
return;
#if 0
// ten times per second or so, do some housekeeping
if (samples > 800/NCOUNTERS) {
uint8_t i = NCOUNTERS;
samples -= 800/NCOUNTERS;
while(i) {
i--;
// TODO
}
}
#endif
#endif
}
void init_state(void)
{
#ifdef ANALOG
uint8_t i;
#endif
memset(counter,0,sizeof(counter));
#ifdef ANALOG
#ifdef SLOW
memset(decay,0,sizeof(decay));
#endif
for(i = NCOUNTERS; i; ) {
i--;
hyst[i] = HYST<<5;
}
ADMUX = 0b1110 | (1<<REFS0) | ADLARMUX; // 5V ref
DIDR0 = (1<<NCOUNTERS)-1;
#if F_CPU >= 12800000 // prescale AD clock to <= 200 KHz
#define CLK_A 7
#elif F_CPU >= 6400000
#define CLK_A 6
#else
#define CLK_A 5
#endif
ADCSRA = (1<<ADEN)|(1<<ADIF)|CLK_A;
#ifdef ADLARREG
ADLARREG |= (1<<ADLAR);
#endif
cur_adc = 0;
bstate = 0;
start_adc();
#else
obits = ADPIN;
ADMSK = (1<<NCOUNTERS)-1;
IFR |= (1<<PCIF0);
IMSK |= (1<<PCIE0);
#endif
}