search for: tiocm_car

Displaying 3 results from an estimated 3 matches for "tiocm_car".

2006 Jul 11
1
Re: [nut-commits] svn commit r446 - in branches/Testing: . drivers man
> +22 = Gamatronic UPSs with alarm interface > + [CP=RTS] [OL=CTS] [LB=\-DCD] [SD=DTR] > + > +22 = CyberPower SL seriess > + [CP=RTS] [OL=CTS] [LB=\-CAR] [SD=DTR] > + > + This part of the patch is no good. While TIOCM_CAR is equivalent to TIOCM_CD (at least in some implementations) CAR certainly isn't handled the same as DCD by genericups. It won't be interpreted and as such will not be used, so we shouldn't list this in the manpage either. I think the best solution would be to merge type 22 and type 23...
2005 Oct 03
1
CyberPower SL-series
...: ST (break) */ }, + { "CyberPower", + "SL series", + "CyberPower SL", + TIOCM_RTS, /* cable power: RTS */ + TIOCM_CTS, TIOCM_CTS, /* online: CTS on */ + TIOCM_CAR, 0, /* low battery: CD (aka CAR) off */ + TIOCM_DTR /* shutdown: DTR */ + }, + /* add any new entries directly above this line */ { NULL, As a side note, I originally tried to implement support in upsd.conf (...
2007 Dec 06
7
[PATCH] Fix ioemu compile
...a/tools/ioemu/hw/serial.c +++ b/tools/ioemu/hw/serial.c @@ -26,9 +26,15 @@ #include <sys/time.h> #include <time.h> #include <assert.h> -#include <asm/termios.h> //#define DEBUG_SERIAL + +#define TIOCM_DTR 0x002 +#define TIOCM_RTS 0x004 +#define TIOCM_CTS 0x020 +#define TIOCM_CAR 0x040 +#define TIOCM_RI 0x080 +#define TIOCM_DSR 0x100 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel