Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hardware: steering wheel and pedals?
08-22-2007, 10:33 AM,
#80
 
I'm also trying to get the Logitech Driving Force Pro to allow a steering angle of 900 degrees using libusb under Linux. Following eckzow's hints I came up with this piece of code:

Code:
#include <stdio>
#include <usb>
#include <time>

clock_t start, end;
double cpu_time_used;

int main(int argc, char **argv) {
  struct usb_bus *busses;

  usb_init();
  usb_find_busses();
  usb_find_devices();

  busses = usb_get_busses();

  struct usb_dev_handle* usb_handle;
  struct usb_bus *bus;
  int c, i, a;
  char buf[] = { 0xf8, 0x81, 0x84, 0x03, 0x00, 0x00, 0x00 };
  char* ptr = buf;
  for (bus = busses; bus; bus = bus->next) {
    struct usb_device *dev;

    for (dev = bus->devices; dev; dev = dev->next) {

       if ((dev->descriptor.idVendor == 0x046d) && (dev->descriptor.idProduct == 0xc294)) {
         int i,stat;

         printf("vendor: %i\n",dev->descriptor.idVendor);

         usb_handle = usb_open(dev);
         printf("Device opened\n"); fflush(stdout);

         stat = usb_detach_kernel_driver_np(usb_handle, 0);
         printf ("releasing kernel driver: %i\n",stat); fflush(stdout);

         stat = usb_claim_interface(usb_handle, 0);
         printf ("stat:%d from claim\n",stat); fflush(stdout);

         i=usb_interrupt_write(usb_handle, 1, buf, sizeof(buf), 10);
         printf("write: %d\n",i);

         getchar();

         stat = usb_release_interface(usb_handle, 0);
         printf("Device released: %i\n", stat); fflush(stdout);

         stat = usb_close(usb_handle);
         printf("Device closed: %i\n", stat); fflush(stdout);
      }
    }
  }
  return 0;
}

Most of the time, the code seems to be able to send the character array to the device, and exits normally, but the maximum steering angle doesn't change.
Sometimes the line usb_find_busses(); makes the steering wheel reinitialize itself as if the usb cable was disconnected and then reconnected. I haven't figured out yet under what circumstances that happens.
Reply


Messages In This Thread
[No subject] - by thelusiv - 11-05-2006, 11:49 PM
[No subject] - by kcid - 11-06-2006, 10:29 AM
[No subject] - by reece146 - 11-06-2006, 11:52 PM
[No subject] - by joevenzon_phpbb2_import3 - 11-07-2006, 01:43 AM
[No subject] - by Nigo - 11-10-2006, 07:34 AM
[No subject] - by cotharyus - 11-10-2006, 11:23 AM
[No subject] - by cotharyus - 12-02-2006, 12:22 PM
[No subject] - by joevenzon_phpbb2_import3 - 12-02-2006, 03:35 PM
[No subject] - by Nigo - 12-03-2006, 10:49 AM
[No subject] - by joevenzon_phpbb2_import3 - 12-03-2006, 12:20 PM
[No subject] - by Nigo - 12-03-2006, 12:36 PM
[No subject] - by joevenzon_phpbb2_import3 - 12-03-2006, 12:41 PM
[No subject] - by Nigo - 12-03-2006, 01:51 PM
[No subject] - by cotharyus - 12-03-2006, 05:20 PM
[No subject] - by Nigo - 12-04-2006, 05:53 AM
[No subject] - by cotharyus - 12-04-2006, 02:00 PM
[No subject] - by osiris - 12-04-2006, 02:04 PM
[No subject] - by Nigo - 12-05-2006, 05:21 AM
[No subject] - by joevenzon_phpbb2_import3 - 12-05-2006, 10:54 AM
[No subject] - by Nigo - 12-05-2006, 12:45 PM
[No subject] - by cotharyus - 12-06-2006, 08:53 AM
[No subject] - by stenyak - 02-05-2007, 07:53 PM
[No subject] - by stenyak - 02-05-2007, 09:12 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-05-2007, 11:02 PM
[No subject] - by stenyak - 02-06-2007, 02:14 AM
[No subject] - by thelusiv - 02-06-2007, 02:33 AM
[No subject] - by Nigo - 02-06-2007, 06:03 AM
[No subject] - by stenyak - 02-06-2007, 08:56 AM
[No subject] - by thelusiv - 02-06-2007, 09:47 AM
[No subject] - by joevenzon_phpbb2_import3 - 02-06-2007, 10:50 AM
[No subject] - by thelusiv - 02-06-2007, 06:58 PM
[No subject] - by stenyak - 02-06-2007, 09:31 PM
[No subject] - by thelusiv - 02-06-2007, 10:44 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-07-2007, 10:51 AM
[No subject] - by Nigo - 02-07-2007, 12:32 PM
[No subject] - by stenyak - 02-07-2007, 01:37 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-07-2007, 10:58 PM
[No subject] - by thelusiv - 02-09-2007, 04:32 AM
[No subject] - by stenyak - 02-09-2007, 04:37 AM
[No subject] - by thelusiv - 02-09-2007, 04:50 AM
[No subject] - by stenyak - 02-09-2007, 05:16 AM
[No subject] - by Nigo - 02-09-2007, 05:30 PM
[No subject] - by stenyak - 02-09-2007, 06:06 PM
[No subject] - by thelusiv - 02-09-2007, 06:41 PM
[No subject] - by jdeneux - 02-16-2007, 05:03 PM
[No subject] - by thelusiv - 02-16-2007, 09:55 PM
[No subject] - by Nigo - 02-17-2007, 05:24 AM
[No subject] - by jdeneux - 02-17-2007, 02:53 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-18-2007, 03:11 PM
[No subject] - by thelusiv - 02-19-2007, 01:52 PM
[No subject] - by stenyak - 02-19-2007, 02:18 PM
[No subject] - by thelusiv - 02-20-2007, 04:36 AM
[No subject] - by stenyak - 02-20-2007, 06:28 AM
[No subject] - by Nigo - 02-20-2007, 12:48 PM
[No subject] - by thelusiv - 02-20-2007, 05:34 PM
[No subject] - by stenyak - 02-20-2007, 05:52 PM
[No subject] - by thelusiv - 02-20-2007, 06:45 PM
[No subject] - by stenyak - 02-20-2007, 06:47 PM
[No subject] - by thelusiv - 02-20-2007, 07:03 PM
[No subject] - by stenyak - 02-22-2007, 03:01 PM
[No subject] - by eckzow - 02-23-2007, 12:59 AM
[No subject] - by stenyak - 02-23-2007, 02:57 AM
[No subject] - by Nigo - 02-23-2007, 06:31 AM
[No subject] - by thelusiv - 02-23-2007, 04:09 PM
[No subject] - by stenyak - 02-23-2007, 07:22 PM
[No subject] - by eckzow - 02-24-2007, 01:54 AM
[No subject] - by stenyak - 02-24-2007, 11:27 AM
[No subject] - by Nigo - 02-24-2007, 12:34 PM
[No subject] - by eckzow - 02-24-2007, 02:50 PM
[No subject] - by thelusiv - 02-25-2007, 12:38 PM
[No subject] - by eckzow - 03-12-2007, 08:58 PM
[No subject] - by thelusiv - 03-12-2007, 10:38 PM
[No subject] - by stenyak - 03-13-2007, 02:46 AM
G25 FF protocol info - by anrp - 05-10-2007, 08:38 PM
[No subject] - by thelusiv - 05-15-2007, 11:44 PM
[No subject] - by reece146 - 06-28-2007, 10:18 PM
[No subject] - by kidrock - 07-13-2007, 12:12 AM
[No subject] - by synapse247 - 08-21-2007, 12:23 AM
[No subject] - by cuckoo - 08-22-2007, 10:33 AM
[No subject] - by synapse247 - 08-22-2007, 04:01 PM
[No subject] - by eckzow - 08-22-2007, 09:28 PM
[No subject] - by synapse247 - 08-23-2007, 11:22 AM
[No subject] - by cotharyus - 08-23-2007, 12:10 PM
[No subject] - by cuckoo - 08-28-2007, 06:50 AM
[No subject] - by thelusiv - 08-28-2007, 10:47 AM
[No subject] - by reece146 - 08-28-2007, 10:50 AM
[No subject] - by Keith_Beef - 10-15-2009, 11:28 PM
[No subject] - by joevenzon_phpbb2_import3 - 10-16-2009, 01:15 AM
[No subject] - by Keith_Beef - 10-17-2009, 10:23 AM
[No subject] - by joevenzon_phpbb2_import3 - 10-20-2009, 10:20 PM

Forum Jump:


Users browsing this thread: 8 Guest(s)