search for: get_data_agil

Displaying 9 results from an estimated 9 matches for "get_data_agil".

Did you mean: get_data_agiler
2008 Apr 11
1
[Bug 215389] [NEW] No battery charge percentage on belkin usb avr
...c_usb -DDDDD -a SAI > ... > Checking device (0665/5161) (001/007) > - VendorID: 0665 > - ProductID: 5161 > - Manufacturer: Cypress Semiconductor > - Product: USB to Serial > - Serial Number: unknown > - Bus: 001 > Trying to match device > Device matches > get_data_agiler: raw dump: (0 bytes) => > get_data_agiler: raw dump: (0 bytes) => > Starting UPS detection process... > Asking for UPS status [Q1]... > Q1 => OK [(225.4 225.4 225.4 042 50.1 13.6 25.0 00001001] > Asking for UPS status [Q1]... > Q1 => OK [(225.4 225.4 225.4 042...
2008 Jul 13
3
Unitek Alpha 650 ipE
Hello everyone, has anyone ever tried to make this device work with Linux and NUT? This is what udevadm monitor says: UEVENT[1215983089.652345] add /devices/pci0000:00/0000:00:0f.2/usb1/1-1 (usb) UEVENT[1215983089.652427] add /class/usb_endpoint/usbdev1.4_ep00 (usb_endpoint) UEVENT[1215983089.657975] add /devices/pci0000:00/0000:00:0f.2/usb1/1-1/1-1:1.0 (usb) UDEV
2009 Jan 23
2
Problems with Unitek Alpha 1000 Ps
...to match device Device does not match - skipping Checking device (0665/5161) (002/005) - VendorID: 0665 - ProductID: 5161 - Manufacturer: WayTech Development(S) - Product: WayTech USB-RS232 Interface (V1.0) Baud rate 2400bps - Serial Number: unknown - Bus: 002 Trying to match device Device matches get_data_agiler: raw dump: (0 bytes) => Starting UPS detection process... Asking for UPS status [Q1]... get_data_agiler: raw dump: (0 bytes) => get_data_agiler: raw dump: (8 bytes) => 30 30 31 30 30 30 0d 00 Q1 => FAILED [short read] Q1 detail: (6 bytes) => 30 30 31 30 30 30 Asking for UPS status...
2008 May 08
12
Maruson power net 1500 support?
I recently took over maintenance of a linux computer which is drawing power from a "Maruson Power Net 1500" UPS. However, there is currently no monitoring or control of the UPS by this (or any other) computer. Can nut control this device? There are serial, usb, and EPO connectors on the back of the unit. (There may be a manual but I'm going to have to hunt for it.) Thanks, David
2007 Jan 23
2
Voltage override in megatec and megatec-over-usb [was: Re: nut-2.0.5 megatec + Online Xanto]
On 1/23/07, Henning Brauer <hb-nut@bsws.de> wrote: > good new first: the megatec driverin 2.0.5 now works with the Online > Xanto S3000R here - well, for the very basics. > > the UPS has NO way ofidentifying itself. It also does not respond to > the power ratings query ("F"). I previously used a hacked up fentonups > driver. This means the driver cannot figure out
2007 Sep 12
2
PowerWalker and megatec_usb
Hi! I've (finally) decided to try and make my PowerWalker work with megatec_usb. So far it seems the agiler subdriver is the way to go, but it doesn't work. The initial detection process sometimes succeeds in 1 out of 5 "Q1" commands, but that's about it (which is better than what the krauler subdriver can do... absolutely nothing). So, what needs to be done to obtain more
2007 Oct 03
2
[nut-commits] svn commit r1136 - in trunk: . drivers
...; initialization, and moved some shared code to agiler init function > since krauler doesn't need it. [...] I'm not very thrilled about this patch: 1) Down at the subdriver level, one shouldn't use ser_get_line() anymore, but usb->get_interrupt() instead or alternatively, get_data_agiler(). Hopping back-and-forth between various layers in the code is bad coding style as it makes the code difficult to understand. 2) So what is the benefit of this patch? It seem to try to optimize something away that complicates the subdrivers and really provides no runtime advantages (the ser_ope...
2006 Dec 05
3
megatec over USB - new driver patch
...uint16_t vid; + uint16_t pid; + int (*get_data)(char *buffer,int buffer_size); + int (*set_data)(const char *str); +} usb_ups_t; + +usb_ups_t *usb_ups_device = NULL; + +/* + All devices known to this driver go here + along with their set/get routines +*/ + +static int get_data_agiler(char *buffer,int buffer_size); +static int set_data_agiler(const char *str); + +static usb_ups_t KnownDevices[]={ + { 0x05b8, 0x0000, get_data_agiler, set_data_agiler }, + { .vid=0 } /* end of list */ +}; + +static int comm_usb_match(HIDDevice *d, void *privdata) +{ + usb_ups_t *p;...
2007 Feb 01
2
Re: [Nut-upsuser] Ablerex 625L USB version
...ata)(char *buffer,int buffer_size); > + int (*set_data)(const char *str); > + } usb_ups_t; > + > + usb_ups_t *usb_ups_device = NULL; > + > + /* > + All devices known to this driver go here > + along with their set/get routines > + */ > + > + static int get_data_agiler(char *buffer,int buffer_size); > + static int set_data_agiler(const char *str); > + static int get_data_ablerex(char *buffer,int buffer_size); > + static int set_data_ablerex(const char *str); > + > + static usb_ups_t KnownDevices[]={ > + { 0x05b8, 0x0000, get_data_agiler, s...