Displaying 3 results from an estimated 3 matches for "option_card_fail_2".
Did you mean:
option_card_fail_1
2009 Oct 18
3
liebert GTX2 ESP-II serial support
2009/10/15 Farkas Levente <lfarkas at lfarkas.org>
> hi,
> i read your thread at:
>
> http://lists.alioth.debian.org/pipermail/nut-upsdev/2009-January/003772.html
>
> http://lists.alioth.debian.org/pipermail/nut-upsdev/2009-January/003775.html
> we've got exactly the same problem that we need a nut driver for liebert
> ups. is there any progress in this field?
2010 Apr 02
7
Liebert GXT2 NUT driver
Hi guys,
I found the troblue and fix it!
I attached the patch.
The trouble was in the command reply buffer use.
You compute the value that value = reply[6]*256+reply[5] <- it's wrong
The right solution: value = reply[5] * 256 + reply[6];
And other bug,
battery.runtime compute, you divide this value 60 <- it's wrong
right value: divide 1.0
I continue the work on this
2009 Jan 26
1
ups emerson liebert GTX2 ESP-II serial protocol demo
...8,2,1,19,000);
fs(c++,"INTERNAL_COMMS_LOST", 2,0,7, 1,148,2,1,19,000);
fs(c++,"PWR_MOD_FAILED", 2,0,9, 1,148,2,1,19,000);
fs(c++,"BAT_MOD_FAILED", 2,0,10, 1,148,2,1,19,000);
fs(c++,"OPTION_CARD_FAIL_1", 2,0,0, 1,148,2,1,20,000);
fs(c++,"OPTION_CARD_FAIL_2", 2,0,1, 1,148,2,1,20,000);
fs(c++,"OPTION_CARD_FAIL_3", 2,0,2, 1,148,2,1,20,000);
fs(c++,"OPTION_CARD_FAIL_4", 2,0,3, 1,148,2,1,20,000);
fs(c++,"OPTION_CARD_FAIL_5", 2,0,4, 1,148,2,1,20,000);
fs(c++,"OPTION_CARD_FAIL_6", 2,0,5, 1,148,2...