-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAX17048.cpp
More file actions
469 lines (364 loc) · 10.3 KB
/
Copy pathMAX17048.cpp
File metadata and controls
469 lines (364 loc) · 10.3 KB
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/* MAX17048 Driver Library
* Modified January 2016 by Michael Copland for the Arduino framework
*
* Copyright (c) 2013 Neil Thiessen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "MAX17048.h"
#include <Arduino.h>
#include <Wire.h>
const uint8_t MAX17048::RCOMP0 = 0x97, MAX17048::m_ADDR = 0x36;
MAX17048::MAX17048() {
Wire.begin();
}
bool MAX17048::open() {
// Probe for the MAX17048 using a Zero Length Transfer
Wire.beginTransmission(m_ADDR);
return (Wire.endTransmission() == 0);
}
void MAX17048::reset() {
// Write the POR command
write(REG_CMD, 0x5400);
}
void MAX17048::quickStart() {
// Read the current 16-bit register value
uint16_t value = read(REG_MODE);
if (bitRead(value, 14) != true) {
// Set the QuickStart bit
bitSet(value, 14);
// Write the value back out
write(REG_MODE, value);
}
}
bool MAX17048::sleepEnabled() {
// Read the 16-bit register value
uint16_t value = read(REG_MODE);
// Return the status of the EnSleep bit
return bitRead(value, 13);
}
void MAX17048::sleepEnabled(bool enabled) {
// Read the current 16-bit register value
uint16_t value = read(REG_MODE);
if (bitRead(value, 13) != enabled) {
// Set or clear the EnSleep bit
bitWrite(value, 13, enabled);
// Write the value back out
write(REG_MODE, value);
}
}
bool MAX17048::hibernating() {
// Read the 16-bit register value
uint16_t value = read(REG_MODE);
// Return the status of the HibStat bit
return bitRead(value, 12);
}
float MAX17048::hibernateThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_HIBRT);
// Extract the hibernate threshold
return highByte(value) * 0.208;
}
void MAX17048::hibernateThreshold(float threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_HIBRT);
// Mask off the old value
value &= 0x00FF;
// Do a smart update
if (threshold > 0.0) {
if (threshold < 53.04)
value |= (uint16_t)(threshold / 0.208) << 8;
else
value |= 0xFF00;
}
// Write the 16-bit register
write(REG_HIBRT, value);
}
float MAX17048::activeThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_HIBRT);
// Extract the active threshold
return (value & 0x00FF) * 0.00125;
}
void MAX17048::activeThreshold(float threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_HIBRT);
// Mask off the old value
value &= 0xFF00;
// Do a smart update
if (threshold > 0.0) {
if (threshold < 0.31875)
value |= (uint8_t)(threshold / 0.00125);
else
value |= 0x00FF;
}
// Write the 16-bit register
write(REG_HIBRT, value);
}
uint16_t MAX17048::version() {
// Return the 16-bit production version
return read(REG_VERSION);
}
uint8_t MAX17048::compensation() {
// Read the 16-bit register value
uint16_t value = read(REG_CONFIG);
// Return only the upper byte
return highByte(value);
}
void MAX17048::compensation(uint8_t rcomp) {
// Read the current 16-bit register value
uint16_t value = read(REG_CONFIG);
// Update the register value
value &= 0x00FF;
value |= rcomp << 8;
// Write the value back out
write(REG_CONFIG, value);
}
void MAX17048::tempCompensation(float temp) {
// Calculate the new RCOMP value
uint8_t rcomp;
if (temp > 20.0) {
rcomp = RCOMP0 + (temp - 20.0) * -0.5;
} else {
rcomp = RCOMP0 + (temp - 20.0) * -5.0;
}
// Update the RCOMP value
compensation(rcomp);
}
bool MAX17048::sleeping() {
// Read the 16-bit register value
uint16_t value = read(REG_CONFIG);
// Return the status of the SLEEP bit
return bitRead(value, 7);
}
void MAX17048::sleep(bool sleep) {
// Read the current 16-bit register value
uint16_t value = read(REG_CONFIG);
if (bitRead(value, 7) != sleep) {
// Set or clear the SLEEP bit
bitWrite(value, 7, sleep);
// Write the value back out
write(REG_CONFIG, value);
}
}
bool MAX17048::socChangeAlertEnabled() {
// Read the 16-bit register value
uint16_t value = read(REG_CONFIG);
// Return the status of the ALSC bit
return bitRead(value, 6);
}
void MAX17048::socChangeAlertEnabled(bool enabled) {
// Read the current 16-bit register value
uint16_t value = read(REG_CONFIG);
if (bitRead(value, 6) != enabled) {
// Set or clear the ALSC bit
bitWrite(value, 6, enabled);
// Write the value back out
write(REG_CONFIG, value);
}
}
bool MAX17048::alerting() {
// Read the 16-bit register value
uint16_t value = read(REG_CONFIG);
// Return the status of the ALRT bit
return bitRead(value, 5);
}
void MAX17048::clearAlert() {
// Read the current 16-bit register value
uint16_t value = read(REG_CONFIG);
if (bitRead(value, 5) != false) {
// Clear the ALRT bit
bitClear(value, 5);
// Write the value back out
write(REG_CONFIG, value);
}
}
uint8_t MAX17048::emptyAlertThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_CONFIG);
// Extract the threshold
return 32 - (value & 0x001F);
}
void MAX17048::emptyAlertThreshold(uint8_t threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_CONFIG);
// Range check threshold
threshold = constrain(threshold, 1, 32);
// Update the register value
value &= 0xFFE0;
value |= 32 - threshold;
// Write the 16-bit register
write(REG_CONFIG, value);
}
float MAX17048::vAlertMinThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_VALRT);
// Extract the alert threshold
return highByte(value) * 0.02;
}
void MAX17048::vAlertMinThreshold(float threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_VALRT);
// Mask off the old value
value &= 0x00FF;
// Do a smart update
if (threshold > 0.0) {
if (threshold < 5.1)
value |= (uint16_t)(threshold / 0.02) << 8;
else
value |= 0xFF00;
}
// Write the 16-bit register
write(REG_VALRT, value);
}
float MAX17048::vAlertMaxThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_VALRT);
// Extract the active threshold
return (value & 0x00FF) * 0.02;
}
void MAX17048::vAlertMaxThreshold(float threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_VALRT);
// Mask off the old value
value &= 0xFF00;
// Do a smart update
if (threshold > 0.0) {
if (threshold < 5.1)
value |= (uint8_t)(threshold / 0.02);
else
value |= 0x00FF;
}
// Write the 16-bit register
write(REG_VALRT, value);
}
float MAX17048::vResetThreshold() {
// Read the 16-bit register value
uint16_t value = read(REG_VRESET_ID);
// Extract the threshold
return (value >> 9) * 0.04;
}
void MAX17048::vResetThreshold(float threshold) {
// Read the current 16-bit register value
uint16_t value = read(REG_VRESET_ID);
// Mask off the old value
value &= 0x01FF;
// Do a smart update
if (threshold > 0.0) {
if (threshold < 5.08)
value |= (uint16_t)(threshold / 0.04) << 9;
else
value |= 0xFE00;
}
// Write the 16-bit register
write(REG_VRESET_ID, value);
}
bool MAX17048::comparatorEnabled() {
// Read the 16-bit register value
uint16_t value = read(REG_VRESET_ID);
// Return the status of the Dis bit
return bitRead(value, 8);
}
void MAX17048::comparatorEnabled(bool enabled) {
// Read the current 16-bit register value
uint16_t value = read(REG_VRESET_ID);
if (bitRead(value, 8) != enabled) {
// Set or clear the Dis bit
bitWrite(value, 8, enabled);
// Write the value back out
write(REG_VRESET_ID, value);
}
}
uint8_t MAX17048::id() {
// Read the 16-bit register value
uint16_t value = read(REG_VRESET_ID);
// Return only the ID bits
return lowByte(value);
}
bool MAX17048::vResetAlertEnabled() {
// Read the 16-bit register value
uint16_t value = read(REG_STATUS);
// Return the status of the EnVR bit
return bitRead(value, 14);
}
void MAX17048::vResetAlertEnabled(bool enabled) {
// Read the current 16-bit register value
uint16_t value = read(REG_STATUS);
if (bitRead(value, 14) != enabled) {
// Set or clear the EnVR bit
bitWrite(value, 14, enabled);
// Write the value back out
write(REG_STATUS, value);
}
}
uint8_t MAX17048::alertFlags() {
// Read the 16-bit register value
uint16_t value = read(REG_STATUS);
// Return only the flag bits
return highByte(value) & 0x3F;
}
void MAX17048::clearAlertFlags(uint8_t flags) {
// Read the current 16-bit register value
uint16_t value = read(REG_STATUS);
// Clear the specified flag bits
value &= ~((flags & 0x3F) << 8);
// Write the value back out
write(REG_STATUS, value);
}
float MAX17048::vcell() {
// Read the 16-bit raw Vcell value
uint16_t value = read(REG_VCELL);
// Return Vcell in volts
return value * 0.000078125;
}
float MAX17048::soc() {
// Read the 16-bit raw SOC value
uint16_t value = read(REG_SOC);
// Return SOC in percent
return value * 0.00390625;
}
uint8_t MAX17048::soc_int() {
// Read the 16-bit raw SOC value
uint16_t value = read(REG_SOC);
// Return only the top byte
return highByte(value);
}
float MAX17048::crate() {
// Read the 16-bit raw C/Rate value
uint16_t value = read(REG_CRATE);
// Return C/Rate in %/hr
return value * 0.208;
}
MAX17048::operator float() {
// Return the current floating point SOC reading
return soc();
}
MAX17048::operator uint8_t() {
// Return the current integer SOC reading
return soc_int();
}
uint16_t MAX17048::read(uint8_t reg) {
// Read the 16-bit register
Wire.requestFrom(m_ADDR, 2, reg, 1, true);
// Return the combined 16-bit value
return (Wire.read() << 8) | Wire.read();
}
void MAX17048::write(uint8_t reg, uint16_t data) {
Wire.beginTransmission(m_ADDR);
Wire.write(reg);
Wire.write(highByte(data));
Wire.write( lowByte(data));
Wire.endTransmission();
}
// Initialise a MAX17048 object
MAX17048 Gauge;