Displaying 3 results from an estimated 3 matches for "lowxfer".
2005 Aug 18
1
Help with Fenton model capability table
...I am working on a patch for FENTON.H to support some more ups models,
I wonder if someone can help with further information,meaning and
importance for the following values that are beeing set in the model
capability table:
float lowvolt;
float voltrange;
float chrglow;
float chrgrange;
int lowxfer;
int lownorm;
int highnorm;
int highxfer;
Thanks,
Nadav
2006 Apr 26
1
RE nut 2.0 fentonups and Xanto S3000R
...; modelnum == -1)
+ if (check_mtab2(model, 0) == 0)
+ fatalx("no such model:
%s", model);
- dstate_setinfo("input.transfer.low",
"%d",
- modeltab[modelnum].lowxfer);
+ if (raw) {
+ /* table lookup fails -> guess */
+ if (modelnum == -1)
+ guessmodel(raw);
+ else {
+ dstate_setinfo("ups.model",...
2006 Jul 24
2
fentonups driver patch for Effekta MHD3000 UPS
...2(const char *raw)
{
***************
*** 54,59 ****
--- 68,74 ----
chrglow = mtab2[i].chrglow;
chrgrange = mtab2[i].chrgrange;
cap_upstemp = mtab2[i].has_temp;
+ is_online = mtab2[i].is_online;
dstate_setinfo("input.transfer.low", "%d",
mtab2[i].lowxfer);
***************
*** 121,126 ****
--- 136,143 ----
int ret;
if (!strcasecmp(cmdname, "test.battery.start")) {
+ sendcr_and_clear_buf();
+
ret = ser_send(upsfd, "T\r");
if (ret != 2)
***************
*** 130,135 ****
--- 147,154 ----
}
if (!strcase...