Searched refs:wheel (Results 1 - 10 of 10) sorted by relevance

/linux-master/include/linux/input/
H A Dad714x.h55 struct ad714x_wheel_plat *wheel; member in struct:ad714x_platform_data
/linux-master/sound/isa/gus/
H A Dgus_volume.c150 int wheel, sensitivity;
158 wheel = (int) pitchbend - 8192;
159 sensitivity = ((int) sens * wheel) / 128;
/linux-master/samples/uhid/
H A Duhid-example.c14 * This example emulates a basic 3 buttons mouse with wheel over UHID. Run this
24 * r: Move wheel up
25 * f: Move wheel down
53 * We emulate a basic 3 button mouse with wheel and 3 keyboard LEDs. This is
276 static signed char wheel; variable
296 ev.u.input.data[4] = wheel;
364 wheel = 1;
366 wheel = 0;
371 wheel = -1;
373 wheel
[all...]
/linux-master/sound/usb/usx2y/
H A Dusbus428ctldefs.h50 unsigned char wheel[5]; member in struct:us428_ctls
/linux-master/drivers/input/tablet/
H A Daiptek.c278 int wheel; /* synthetic wheel amount */ member in struct:aiptek_settings
487 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
489 aiptek->curSetting.wheel);
490 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
568 if (aiptek->curSetting.wheel !=
572 aiptek->curSetting.wheel);
573 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
632 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
635 aiptek->curSetting.wheel);
[all...]
/linux-master/drivers/input/misc/
H A Dad714x.c108 * Unlike slider/wheel/touchpad, all buttons point to
116 struct ad714x_wheel_drv *wheel; member in struct:ad714x_driver_data
401 * When the scroll wheel is activated, we compute the absolute position based
409 struct ad714x_wheel_plat *hw = &ad714x->hw->wheel[idx];
410 struct ad714x_wheel_drv *sw = &ad714x->sw->wheel[idx];
416 dev_dbg(ad714x->dev, "wheel %d highest_stage:%d\n", idx,
422 struct ad714x_wheel_plat *hw = &ad714x->hw->wheel[idx];
441 * When the scroll wheel is activated, we compute the absolute position based
451 struct ad714x_wheel_plat *hw = &ad714x->hw->wheel[idx];
452 struct ad714x_wheel_drv *sw = &ad714x->sw->wheel[id
[all...]
/linux-master/drivers/hid/
H A Dhid-roccat-kone.h23 kone_keystroke_button_3 = 0xf2, /* wheel */
47 kone_button_info_type_button_3 = 0x3, /* scroll (wheel) */
154 uint8_t wheel; /* up = 1, down = -1 */ member in struct:kone_mouse_event
H A Dhid-lg4ff.c173 /* Multimode wheel identificators */
216 /* Multimode wheel identification checklists */
368 /* Compute a combined axis when wheel does not supply it */
377 static void lg4ff_init_wheel_data(struct lg4ff_wheel_data * const wdata, const struct lg4ff_wheel *wheel, argument
392 struct lg4ff_wheel_data t_wdata = { .product_id = wheel->product_id,
395 .min_range = wheel->min_range,
396 .max_range = wheel->max_range,
397 .set_range = wheel->set_range,
618 /* Sends commands to set range compatible with Driving Force Pro wheel */
991 /* Export the currently set range of the wheel */
[all...]
/linux-master/tools/testing/selftests/hid/tests/
H A Dtest_mouse.py50 :param wheels: a single value for the vertical wheel or a (vertical, horizontal) tuple for
65 # Note: the BaseMouse doesn't actually have a wheel but the
68 wheel, acpan = 0, 0
71 wheel = wheels[0]
74 wheel = wheels
84 mouse.wheel = wheel
96 :param wheels: a single value for the vertical wheel or a (vertical, horizontal) tuple for
695 # check if the kernel is high res wheel compatible
745 # check if the kernel is high res wheel compatibl
[all...]
/linux-master/drivers/input/mouse/
H A Dpsmouse-base.c71 MODULE_PARM_DESC(a4tech_workaround, "A4Tech second scroll wheel workaround, 1 = enabled, 0 = disabled (default).");
158 int wheel; local
167 /* IntelliMouse has scroll wheel */
172 /* Scroll wheel and buttons on IntelliMouse Explorer */
184 wheel = sign_extend32(packet[3], 3);
191 if (psmouse_a4tech_2wheels && abs(wheel) > 1)
192 input_report_rel(dev, REL_HWHEEL, wheel / 2);
194 input_report_rel(dev, REL_WHEEL, -wheel);

Completed in 284 milliseconds