-
-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy patheverups.c
203 lines (173 loc) · 4.25 KB
/
everups.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
/* everups.c - support for Ever UPS models
Copyright (C) 2001 Bartek Szady <[email protected]>
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 2 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 for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "main.h"
#include "serial.h"
#define DRIVER_NAME "Ever UPS driver"
#define DRIVER_VERSION "0.03"
/* driver description structure */
upsdrv_info_t upsdrv_info = {
DRIVER_NAME,
DRIVER_VERSION,
"Bartek Szady <[email protected]>",
DRV_STABLE,
{ NULL }
};
static unsigned char upstype = 0;
static void init_serial(void)
{
ser_set_dtr(upsfd, 0);
ser_set_rts(upsfd, 0);
}
static int Code(int tries)
{
unsigned char cRecv;
do {
ser_send_char(upsfd, 208);
ser_get_char(upsfd, &cRecv, 3, 0);
if (cRecv==208)
return 1;
} while (--tries>0);
return 0;
}
static int InitUpsType(void)
{
if (Code(1)) {
ser_send_char(upsfd, 173);
ser_get_char(upsfd, &upstype, 3, 0);
return 1;
} else
return 0;
}
static const char *GetTypeUpsName(void)
{
switch(upstype)
{
case 67: return "NET 500-DPC";
case 68: return "NET 700-DPC";
case 69: return "NET 1000-DPC";
case 70: return "NET 1400-DPC";
case 71: return "NET 2200-DPC";
case 73: return "NET 700-DPC (new)";
case 74: return "NET 1000-DPC (new)";
case 75: return "NET 1400-DPC (new)";
case 76: return "NET 500-DPC (new)";
case 81: return "AP 450-PRO";
case 82: return "AP 650-PRO";
default:
return "Unknown";
}
}
void upsdrv_initinfo(void)
{
dstate_setinfo("ups.mfr", "Ever");
dstate_setinfo("ups.model", "%s", GetTypeUpsName());
}
void upsdrv_updateinfo(void)
{
int battery=0,standby=0;
unsigned char recBuf[2];
unsigned long acuV;
unsigned long lineV;
double fVal;
if (!Code(2)) {
upslog_with_errno(LOG_INFO, "Code failed");
dstate_datastale();
return;
}
/*Line status*/
ser_send_char(upsfd, 175);
ser_get_char(upsfd, recBuf, 3, 0);
if ((recBuf[0] & 1) !=0)
standby=1;
else
battery=(recBuf[0] &4) !=0;
if (Code(1)) { /*Accumulator voltage value*/
ser_send_char(upsfd, 189);
ser_get_char(upsfd, recBuf, 3, 0);
acuV=((unsigned long)recBuf[0])*150;
acuV/=255;
} else {
upslog_with_errno(LOG_INFO, "Code failed");
dstate_datastale();
return;
}
if (Code(1)) { /*Line voltage*/
ser_send_char(upsfd, 245);
ser_get_buf_len(upsfd, recBuf, 2, 3, 0);
if ( upstype > 72 && upstype < 77)
lineV=(recBuf[0]*100+recBuf[1]*25600)/352;
else
lineV=(recBuf[0]*100+recBuf[1]*25600)/372;
} else {
upslog_with_errno(LOG_INFO, "Code failed");
dstate_datastale();
return;
}
status_init();
if (battery && acuV<105)
status_set("LB"); /* low battery */
if (battery)
status_set("OB"); /* on battery */
else
status_set("OL"); /* on line */
status_commit();
dstate_setinfo("input.voltage", "%03ld", lineV);
dstate_setinfo("battery.voltage", "%03.2f", (double)acuV /10.0);
fVal=((double)acuV-95.0)*100.0;
if (standby)
fVal/=(135.5-95.0);
else
fVal/=(124.5-95.0);
if (fVal>100)
fVal=100;
else if (fVal<0)
fVal=0;
dstate_setinfo("battery.charge", "%03.1f", fVal);
dstate_dataok();
}
void upsdrv_shutdown(void)
{
if (!Code(2)) {
upslog_with_errno(LOG_INFO, "Code failed");
return;
}
ser_send_char(upsfd, 28);
ser_send_char(upsfd, 1); /* 1.28 sec */
if (!Code(1)) {
upslog_with_errno(LOG_INFO, "Code failed");
return;
}
ser_send_char(upsfd, 13);
ser_send_char(upsfd, 8);
}
void upsdrv_help(void)
{
}
/* list flags and values that you want to receive via -x */
void upsdrv_makevartable(void)
{
}
int upsdrv_initups(void)
{
upsfd = ser_open(device_path);
ser_set_speed(upsfd, device_path, B300);
init_serial();
InitUpsType();
return 1;
}
void upsdrv_cleanup(void)
{
ser_close(upsfd, device_path);
}