nut-debian/drivers/apcsmart_tabs.h

107 lines
3.5 KiB
C
Raw Permalink Normal View History

2011-09-29 21:14:46 +03:00
/*
* apcsmart_tabs.h - tables for apcsmart driver
*
* Copyright (C) 1999 Russell Kroll <rkroll@exploits.org>
* (C) 2000 Nigel Metheringham <Nigel.Metheringham@Intechnology.co.uk>
2013-11-24 17:00:12 +02:00
* (C) 2011+ Michal Soltys <soltys@ziu.info>
2011-09-29 21:14:46 +03:00
*
* 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
*/
2022-07-10 10:23:45 +03:00
#ifndef NUT_APCSMART_TABS_H_SEEN
#define NUT_APCSMART_TABS_H_SEEN 1
2011-09-29 21:14:46 +03:00
#include "main.h"
2013-11-24 17:00:12 +02:00
#define APC_TABLE_VERSION "version 3.1"
2011-09-29 21:14:46 +03:00
/* common flags */
#define APC_PRESENT 0x00000001 /* capability seen on this UPS */
/* instant commands' flags */
#define APC_NASTY 0x00000002 /* Nasty command - must be reconfirmed */
#define APC_REPEAT 0x00000004 /* Command needs sending twice */
/* variables' flags */
#define APC_POLL 0x00000100 /* poll this variable regularly */
#define APC_RW 0x00000200 /* read-write variable */
#define APC_ENUM 0x00000400 /* enumerated type variable */
#define APC_STRING 0x00000800 /* string variable */
#define APC_MULTI 0x00001000 /* there're other vars like that */
2013-11-24 17:00:12 +02:00
#define APC_PACK 0x00002000 /* packed variable */
#define APC_PACK_MAX 4 /* max count of subfields in packed var */
2011-09-29 21:14:46 +03:00
/* variables' format */
#define APC_F_MASK 0xFF000000 /* Mask for apc data formats */
2013-11-24 17:00:12 +02:00
#define APC_F_LEAVE 0x00000000 /* Just pass this through */
2011-09-29 21:14:46 +03:00
#define APC_F_PERCENT 0x01000000 /* Data in a percent format */
#define APC_F_VOLT 0x02000000 /* Data in a voltage format */
#define APC_F_AMP 0x03000000 /* Data in a current/amp format */
#define APC_F_CELSIUS 0x04000000 /* Data in a temp/C format */
#define APC_F_HEX 0x05000000 /* Data in a hex number format */
#define APC_F_DEC 0x06000000 /* Data in a decimal format */
#define APC_F_SECONDS 0x07000000 /* Time in seconds */
#define APC_F_MINUTES 0x08000000 /* Time in minutes */
#define APC_F_HOURS 0x09000000 /* Time in hours */
2013-11-24 17:00:12 +02:00
#define APC_F_REASON 0x0A000000 /* Reason of transfer */
2011-09-29 21:14:46 +03:00
/* instant commands */
2013-11-24 17:00:12 +02:00
#define APC_CMD_CUSTOM 0 /* command uses separate function */
2011-09-29 21:14:46 +03:00
#define APC_CMD_OFF 'Z'
2013-11-24 17:00:12 +02:00
#define APC_CMD_ON '\016' /* ^N */
2011-09-29 21:14:46 +03:00
#define APC_CMD_FPTEST 'A'
#define APC_CMD_SIMPWF 'U'
#define APC_CMD_BTESTTOGGLE 'W'
#define APC_CMD_GRACEDOWN '@'
#define APC_CMD_SOFTDOWN 'S'
#define APC_CMD_SHUTDOWN 'K'
#define APC_CMD_CALTOGGLE 'D'
#define APC_CMD_BYPTOGGLE '^'
typedef struct {
const char *name; /* the variable name */
char cmd; /* variable character */
unsigned int flags; /* various flags */
2013-11-24 17:00:12 +02:00
const char *regex; /* variable must match this regex */
size_t nlen0; /* var name + null len */
int cnt; /* curr. count of subs */
2011-09-29 21:14:46 +03:00
} apc_vartab_t;
typedef struct {
const char *name, *ext;
char cmd;
int flags;
} apc_cmdtab_t;
typedef struct {
const char *firmware;
const char *cmdchars;
int flags;
} apc_compattab_t;
extern apc_vartab_t apc_vartab[];
extern apc_cmdtab_t apc_cmdtab[];
extern apc_compattab_t apc_compattab[];
extern upsdrv_info_t apc_tab_info;
2022-07-10 10:23:45 +03:00
#endif /* NUT_APCSMART_TABS_H_SEEN */