Displaying 5 results from an estimated 5 matches for "drv_experimental".
2010 Feb 15
1
upsdrv_info structure
...development status */
struct upsdrv_info_s *subdrv_info[2]; /* sub driver information */
};
typedef struct upsdrv_info_s upsdrv_info_t;
Can't we just use something like
static upsdrv_info_t driver_info = {
DRIVER_NAME,
DRIVER_VERSION,
"Ex Ample <nobody op example.com>",
DRV_EXPERIMENTAL
};
upsdrv_info_t *upsdrv_info[] = {
&driver_info,
&subdriver_info,
NULL
};
In this example, subdriver_info is exported by an external module and
that is linked in the main driver.
Best regards, Arjen
--
Please keep list traffic on the list
2014 Nov 03
0
RFC: new variable battery.status (was: [PATCH] upscode2: Report ABM Status)
...ON "0.89abm"
/* driver description structure */
upsdrv_info_t upsdrv_info = {
@@ -54,7 +54,7 @@
"H K Lygre, <hklygre at online.no>\n" \
"Niels Baggesen <niels at baggesen.net>\n" \
"Niklas Edmundsson <nikke at acc.umu.se>",
- DRV_EXPERIMENTAL,
+ DRV_BETA,
{ NULL }
};
@@ -262,7 +262,7 @@
{ "STAT", t_list, NULL, 0, 0, att },
{ "STBO", t_status, NULL, UPSC_STAT_ONBATT },
{ "STBL", t_status, NULL, UPSC_STAT_LOBATT },
- { "STBM", t_ignore },
+ { "STBM", t_string, "batt...
2012 Feb 13
3
RFC: new variable battery.status (was: [PATCH] upscode2: Report ABM Status)
2012/2/6 thomas schorpp <thomas.schorpp at googlemail.com>:
> Hi,
Hi Thomas,
> I want the driver report the battery status from ABM charging controllers
> -patch attached- :
thanks for your patch.
since it introduces a new variable (battery.status.abm), I prefer to
step back and think to something useful more widely.
thus, I'm thinking about a generic
2008 Dec 24
1
Driver removal notification: al175
Hi Kirill,
just to notify you that your al175 driver is being removed from the
NUT tree, as of 2.4.0-pre1.
if you wish to see it entering the tree again, please contact the
Development mailing list to talk about it.
Merry Christmas and happy New Year.
Arnaud
--
Linux / Unix Expert R&D - Eaton - http://www.eaton.com/mgeops
Network UPS Tools (NUT) Project Leader -
2014 Nov 04
2
RFC: new variable battery.status
...gt;
> /* driver description structure */
> upsdrv_info_t upsdrv_info = {
> @@ -54,7 +54,7 @@
> "H K Lygre, <hklygre at online.no>\n" \
> "Niels Baggesen <niels at baggesen.net>\n" \
> "Niklas Edmundsson <nikke at acc.umu.se>",
> - DRV_EXPERIMENTAL,
> + DRV_BETA,
> { NULL }
> };
>
> @@ -262,7 +262,7 @@
> { "STAT", t_list, NULL, 0, 0, att },
> { "STBO", t_status, NULL, UPSC_STAT_ONBATT },
> { "STBL", t_status, NULL, UPSC_STAT_LOBATT },
> - { "STBM", t_ignore },
> + { "S...