Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NEWS.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,9 @@ https://github.com/networkupstools/nut/milestone/13
`battery.runtime`, `battery.voltage`, `input.frequency`,
`output.voltage.nominal` and `ups.firmware.aux` from Phoenixtec
based UPS cards that already answer the rest of the subtree. [#2608]
* Mapped `standby(8)` from XPPC output status to `OL` rather than `OFF`,
because line-interactive devices use it for inverter standby while their
UPS output remains online on utility power. [issue #3512]
* Introduced `voltronic` subdriver for Voltronic enterprise 43943 UPSes,
developed and tested against a PowerShield Centurion RT 1000VA
(PSCERT1000) with a PSSNMPV4 card running firmware 1.1.8.C. [issue #3478,
Expand Down
4 changes: 2 additions & 2 deletions drivers/xppc-mib.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#include "xppc-mib.h"

#define XPPC_MIB_VERSION "0.41"
#define XPPC_MIB_VERSION "0.42"

#define XPPC_SYSOID ".1.3.6.1.4.1.935"

Expand Down Expand Up @@ -66,7 +66,7 @@ static info_lkp_t xpcc_power_info[] = {
info_lkp_default(5, "OFF"), /* sleeping */
info_lkp_default(6, "BYPASS"), /* onBypass */
info_lkp_default(7, ""), /* rebooting */
info_lkp_default(8, "OFF"), /* standBy */
info_lkp_default(8, "OL"), /* line-interactive inverter standby, not UPS/output standby */
info_lkp_default(9, "OL TRIM"), /* onBuck */
info_lkp_sentinel
};
Expand Down
Loading