nut-debian/drivers/netxml-ups.h

78 lines
2.6 KiB
C
Raw Permalink Normal View History

2022-07-10 10:23:45 +03:00
/* netxml-ups.h Driver data/defines for network XML UPS units
2010-03-26 01:20:59 +02:00
Copyright (C)
2008-2009 Arjen de Korte <adkorte-guest@alioth.debian.org>
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
*/
#ifndef NETXML_UPS_H
#define NETXML_UPS_H
#include "nut_stdint.h"
2011-01-26 11:35:08 +02:00
typedef struct {
2010-03-26 01:20:59 +02:00
const char *version; /* name of this subdriver */
2011-01-26 11:35:08 +02:00
const char *initups;
const char *initinfo;
2010-03-26 01:20:59 +02:00
char *configure; /* central configuration */
char *subscribe; /* alarm subscriptions */
char *summary; /* used for quick updates */
char *getobject;
char *setobject;
int (*startelm_cb)(void *userdata, int parent, const char *nspace, const char *name, const char **atts);
int (*cdata_cb)(void *userdata, int state, const char *cdata, size_t len);
int (*endelm_cb)(void *userdata, int state, const char *nspace, const char *name);
2011-01-26 11:35:08 +02:00
} subdriver_t;
2010-03-26 01:20:59 +02:00
/* ---------------------------------------------------------------------- */
/* data for processing boolean values from UPS */
#define STATUS_BIT(x) (ups_status & (uint32_t)1<<x)
#define STATUS_SET(x) (ups_status |= (uint32_t)1<<x)
#define STATUS_CLR(x) (ups_status &= ~((uint32_t)1<<x))
typedef enum {
ONLINE = 0, /* on line */
DISCHRG, /* discharging */
CHRG, /* charging */
LOWBATT, /* low battery */
OVERLOAD, /* overload */
REPLACEBATT, /* replace battery */
SHUTDOWNIMM, /* shutdown imminent */
TRIM, /* SmartTrim */
BOOST, /* SmartBoost */
BYPASSAUTO, /* on automatic bypass */
BYPASSMAN, /* on manual/service bypass */
OFF, /* ups is off */
OVERHEAT, /* overheat */
COMMFAULT, /* communication failure */
INTERNALFAULT, /* internal failure */
FANFAIL, /* fan failure */
NOBATTERY, /* battery missing */
BATTVOLTLO, /* battery voltage too low */
BATTVOLTHI, /* battery voltage too high */
CHARGERFAIL, /* battery charger failure */
VRANGE, /* voltage out of range */
FRANGE, /* frequency out of range */
2022-07-10 10:23:45 +03:00
FUSEFAULT, /* fuse fault */
CAL /* calibrating */
2010-03-26 01:20:59 +02:00
} status_bit_t;
extern uint32_t ups_status;
2022-07-10 10:23:45 +03:00
extern int shutdown_duration;
2010-03-26 01:20:59 +02:00
#endif /* NETXML_UPS_H */