search for: get_data_ablerex

Displaying 2 results from an estimated 2 matches for "get_data_ablerex".

Did you mean: set_data_ablerex
2007 Feb 01
2
Re: [Nut-upsuser] Ablerex 625L USB version
...b_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, set_data_agiler }, > + { 0xffff, 0x0000, get_data_ablerex, set_data_ablerex }, > + { .vid=0 } /* end of...
2007 Feb 08
3
Re: [nut-commits] svn commit r801 - in branches/megatec-usb: . drivers
...devices. But the Krauler driver is now more advanced (with the retry feature), so we could remove the Ablerex subdriver (provided Jon tests the Krauler one to make sure it still works for the Ablerex device). If I understand correctly, the only change needed would be to change {0xffff, 0x0000, get_data_ablerex, set_data_ablerex}, to {0xffff, 0x0000, get_data_krauler, set_data_krauler}, is that correct? -- Peter Alexander Gordeev wrote: > > Author: agordeev-guest > Date: Thu Feb 8 16:43:43 2007 > New Revision: 801 > > Modified: > branches/megatec-usb/ChangeLog > br...