Displaying 10 results from an estimated 10 matches for "apc600".
2007 Dec 12
1
[PATCH]Support full capabilities on older Smart-UPS 600
...ers/apcsmart.c
===================================================================
--- drivers/apcsmart.c (revision 1175)
+++ drivers/apcsmart.c (working copy)
@@ -536,7 +536,8 @@
/* found one, force the model information */
if (!strcmp(buf, "6QD") || /* (APC600.) */
!strcmp(buf, "8QD") || /* (SmartUPS 1250, vintage 07/94.) */
- !strcmp(buf, "6TI")) { /* (APC600.) */
+ !strcmp(buf, "6TI") || /* (APC600.) */
+...
2019 Aug 28
2
Debian 10 nut 2.7.4-8 and APC Back UPS 600i on 940-0020B
...2:53 nusi upsd[506]: listening on 127.0.0.1 port 3493
Aug 27 16:52:53 nusi upsd[506]: listening on 127.0.0.1 port 3493
Aug 27 16:52:53 nusi upsd[571]: Startup successful
Aug 27 16:52:53 nusi upsmon[776]: fopen /var/run/nut/upsmon.pid: No such
file or directory
Aug 27 16:52:53 nusi upsmon[776]: UPS: APC600 at localhost (master) (power
value 1)
Aug 27 16:52:53 nusi upsmon[776]: Using power down flag file /etc/killpower
Aug 27 16:52:53 nusi upsmon[780]: Startup successful
Aug 27 16:52:53 nusi systemd[1]: nut-monitor.service: Can't open PID file
/run/nut/upsmon.pid (yet?) after start: No such file o...
2009 May 04
1
Patches for NUT 2.2.2: APC SmartUPS-900
....2/drivers/apcsmart.c 2007-12-12 13:34:51.000000000
> -0700
> +++ nut-2.2.2-r1/drivers/apcsmart.c 2008-12-06 03:24:36.000000000 -0700
> @@ -536,6 +536,7 @@
> /* found one, force the model information */
> if (!strcmp(buf, "6QD") || /* (APC600.) */
> !strcmp(buf, "8QD") || /* (SmartUPS 1250,
> vintage 07/94.) */
> + !strcmp(buf, "7TD") || /* (SmartUPS 900,
> vintage 11/94.) */
> !strcmp(buf, "6TI") || /*...
2007 Jul 31
1
Proposed apcsmart driver patch
...7-07-27 12:52:10.000000000 -0700
@@ -532,15 +532,14 @@
SER_WAIT_SEC, SER_WAIT_USEC);
/* found one, force the model information */
- if (!strcmp(buf, "6QD")) {
+ if(!strcmp(buf, "8QD") || /* (SmartUPS 1250, vintage 07/94.) */
+ !strcmp(buf, "6QD") || /* (APC600.) */
+ !strcmp(buf, "6TI")) { /* (APC600.) */
upsdebugx(1, "Found Smart-UPS");
dstate_setinfo("ups.model", "Smart-UPS");
}
- else if (!strcmp(buf, "6TI")) {
- upsdebugx(1, "Found Smart-UPS");
- dstate_setinfo("u...
2006 Nov 25
2
patch for old APC Smart-UPS 600
...g D6, D5, or D4 in response to "b" command. I still do not
understand the inconsistency, but I have observed these 3 strings at least.
I came up with the following patch to apcsmart.h:
--- nut-2.0.4.orig/drivers/apcsmart.h
+++ nut-2.0.4/drivers/apcsmart.h
@@ -254,6 +254,10 @@
/* APC600 */
{ "6QD", "79ABCDEFGKLMNOPQRSUVWXYZcefgjklmnopqrsuxz", 0 },
{ "6TI", "79ABCDEFGKLMNOPQRSUVWXYZcefgjklmnopqrsuxz", 0 },
+ /* Smart-UPS 600 */
+ { "D6", "789ABCEFGKLMNOPQRSUVWXYZ", 0 },
+...
2009 Feb 27
0
support for APC Matrix 5000, vintage 12/00 (was: NUT apcsmart driver - firmware addition)
...mart.c.orig Tue Feb 24 14:00:34 2009
> +++ apcsmart.c Tue Feb 24 14:01:04 2009
> @@ -564,6 +564,7 @@
> !strcmp(buf, "8TI") || /* (SmartUPS 1250,
> vintage 08/24/95.) */
> !strcmp(buf, "6TI") || /* (APC600.) */
> !strcmp(buf, "6QI") || /* (APC600.) */
> + !strcmp(buf, "5ZM") || /* (APC Matrix
> 5000, vintage 12/00.) */
> !strcmp(buf, "0ZI") || /* (APC Matrix
> 3000,...
2019 Aug 28
2
Debian 10 nut 2.7.4-8 and APC Back UPS 600i on 940-0020B
I was check out that is the connection between
driver-monitor-server-client is working or not. I was put my server
directly on power cable, keep control cable connection and use command:
$ watch upsc APC600
I was switch to battery, after 2-3 second it show that is on battery OB
and after it shutdown because of low battery LO.
I think that systemd scripts some what unsynchronized, but after it connect.
Problem still exist - why low battery?
Low battery sensing is a little tricky on 940-0020B it usin...
2011 Jan 25
1
[RFC] Updates to ACP smart driver
This patch introduces a handful of new options, I mentioned earlier in:
http://www.mail-archive.com/nut-upsdev at lists.alioth.debian.org/msg02088.html
See the large commit message in the follow-up for the details and rationale.
I realize it's a bit larger diff - so if it's required I can split it into few
smaller ones.
Michal Soltys (1):
APC smart driver update and new features.
2011 Feb 07
4
[PATCH/RFC v2 0/3] Updates to ACP smart driver
This is 2nd version of the earlier patch featuring a few new features
and fixes to the apcsmart driver, following the remarks in:
http://www.mail-archive.com/nut-upsdev at lists.alioth.debian.org/msg02294.html
Major changes from v1:
- handle battery.charge and battery.runtime checks at main.c level
- handle "immutable but writable" conflict gracefully at driver level
-
2011 Mar 05
19
[RFC apcsmart V3 00/18] apcsmart driver updates
Sorry for a bit longer delay than I anticipated, I was stuffed with the work.
This is the next iteration of the patch adding some functionality to apcsmart
driver, and relying on 'ignorelb' recently added.
Follow up from previous thread:
http://www.mail-archive.com/nut-upsdev at lists.alioth.debian.org/msg02331.html
Main differences is that V3 is split into many small patches, so the