forked from bersch/MCP3911
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMCP3911.cpp
132 lines (103 loc) · 3.83 KB
/
MCP3911.cpp
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
/*
Copyright (c) 2015 Bernhard Schneider <[email protected]>
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#include <MCP3911.h>
using namespace MCP3911;
void C::reset(void) {
const uint8_t r = 0b11000000;
SPI_write(REG_CONFIG2, (uint8_t *)&r, 1); // 6.7.2 p. 47
}
bool C::reg_read(uint8_t addr, Looping g, uint8_t count) {
uint8_t *data = ((uint8_t *)_c)+addr;
if (count == 0) {
switch (g) {
case REGISTER: count = 1;
break;
case GROUP: switch (addr) {
case REG_CHANNEL_0:
case REG_CHANNEL_1: count = 3; break;
case REG_MOD:
case REG_STATUSCOM: count = 4; break;
case REG_OFFCAL_CH0:
case REG_OFFCAL_CH1: count = 6; break;
case REG_VREFCAL: count = 1; break;
}
break;
case TYPE: switch (addr) {
case REG_CHANNEL_0: count = 6; break;
case REG_MOD: count = 21; break;
}
break;
case ALL: switch (addr) {
case REG_CHANNEL_0: count = 0x1b; break;
}
break;
default: return false;
}
}
SPI_read(addr, data, count);
return true;
}
bool C::reg_write(uint8_t addr, Looping g, uint8_t count) {
uint8_t *data = ((uint8_t *)_c)+addr;
if (count == 0) {
switch (g) {
case REGISTER: count = 1;
break;
case TYPE: switch (addr) {
case REG_MOD: count = 21; break;
}
break;
case GROUP: break;
case ALL: break;
default: return false;
}}
SPI_write(addr, data, count);
return true;
}
void C::get_value(double *result, uint8_t channel) {
_ChVal& val = (*_c).ch[channel];
int32_t data_ch = msb2l((uint8_t *)&val, 3);
if (data_ch & 0x00800000L)
data_ch |= 0xff000000L;
uint8_t gain = (channel == 0)?(*_c).gain.ch0:(*_c).gain.ch1;
*result = Vref * data_ch / ( (3*32768*256/2) * (1 << gain) );
}
// msb array to ulong
uint32_t C::msb2l(void *src, uint8_t count) {
uint32_t value = 0L;
uint8_t *b = (uint8_t *)src;
while (count--) {
value <<= 8;
value |= *b++;
}
return value;
}
// ulong to msb array
void C::l2msb(uint32_t value, void *tgt, uint8_t count) {
uint32_t v = value;
uint8_t *b = (uint8_t *)tgt;
while (1) {
count--;
*(b+count) = (uint8_t)(v & 0xff);
if (count == 0)
break;
v >>= 8;
}
}