Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1274639

[PATCH 0/2] HID: Force feedback support for the Logitech G920 Wheel

From Edwin Velds <e.velds@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 0/2] HID: Force feedback support for the Logitech G920 Wheel
Date 2015-11-21 13:40 +0100
Message-ID <qxfCp-5gE-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This patch implements force feedback support for the Logitech G920 Driving Force
Racing Wheel.

This patch is based on the basic G920 support patch by Simon Wood:
http://www.spinics.net/lists/linux-input/msg42174.html

The first patch splits and renames the HID++ driver (hid-logitech-hidpp.c) into
a basic header and implementation in order to allow building additional features
from multiple sources. Since this only satisfies the needs for the FF driver,
any comments or suggestions are welcome.

The second patch implements all supported force feedback effects. The force
feedback implementation was not made optional because the G920 (like all 
Logitech wheels) can't function without it due to very stiff to default springs.

Edwin Velds (1):
  HID: Create header for Logitech HID++ driver
  HID: Force feedback support for the Logitech G920

 drivers/hid/Makefile                  |    2 +
 drivers/hid/hid-logitech-hidpp-base.c | 1725 ++++++++++++++++++++++++++++++
 drivers/hid/hid-logitech-hidpp-base.h |   81 ++
 drivers/hid/hid-logitech-hidpp-ff.c   |  540 ++++++++++
 drivers/hid/hid-logitech-hidpp-ff.h   |    9 +
 drivers/hid/hid-logitech-hidpp.c      | 1900 ---------------------------------
 6 files changed, 2357 insertions(+), 1900 deletions(-)
 create mode 100644 drivers/hid/hid-logitech-hidpp-base.c
 create mode 100644 drivers/hid/hid-logitech-hidpp-base.h
 create mode 100644 drivers/hid/hid-logitech-hidpp-ff.c
 create mode 100644 drivers/hid/hid-logitech-hidpp-ff.h
 delete mode 100644 drivers/hid/hid-logitech-hidpp.c

-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/2] HID: Force feedback support for the Logitech G920 Wheel Edwin Velds <e.velds@gmail.com> - 2015-11-21 13:40 +0100
  [PATCH 2/2] HID: Force feedback support for the Logitech G920 Edwin Velds <e.velds@gmail.com> - 2015-11-21 13:40 +0100
  Re: [PATCH 0/2] HID: Force feedback support for the Logitech G920  Wheel Jiri Kosina <jikos@kernel.org> - 2015-11-26 15:50 +0100
    Re: [PATCH 0/2] HID: Force feedback support for the Logitech G920 Wheel Benjamin Tissoires <benjamin.tissoires@gmail.com> - 2015-11-26 16:20 +0100
  Re: [PATCH 0/2] HID: Force feedback support for the Logitech G920 Wheel Elias Vanderstuyft <elias.vds@gmail.com> - 2015-11-28 09:00 +0100

csiph-web