-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRLECModule.h
58 lines (53 loc) · 1.49 KB
/
RLECModule.h
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 (C) 2015 Michal Podhradsky
*
* This file is part of Viking Motorsports Arduino_eVCU.
*
* Viking Motorsports Arduino_eVCU 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 2, or (at your option)
* any later version.
*
* Viking Motorsports Arduino_eVCU 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with Viking Motorsports Arduino_eVCU; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
/**
* @file RLECModule.h
*
* RLEC module
*/
#ifndef RLECMODULE_H_
#define RLECMODULE_H_
#include <Arduino.h>
#define RLEC_CELLS 12
enum RLECStatus {
Disabled,
Active
};
class RLECModule {
public:
RLECModule();
uint16_t cell_voltage[RLEC_CELLS];
uint16_t max_cell_volt;
uint16_t min_cell_volt;
int8_t rlec_temp;
uint16_t balance_resistors; // balance regs byte for now
uint8_t faults; // faults byte
uint16_t rlec_volt;
int8_t cell_temp[RLEC_CELLS];
int8_t min_cell_temp;
int8_t max_cell_temp;
uint8_t sw_id;
uint8_t charge_status;
enum RLECStatus status;
};
#endif /* RLECMODULE_H_ */