├── .gitignore ├── .gitmodules ├── Kbuild ├── LICENSE ├── Makefile ├── README.md ├── dkms ├── dkms-install.sh └── dkms.conf ├── docs ├── CONTRIBUTING.md ├── DRIVER.md ├── FFBEFFECTS.md ├── INTEGRATION.md ├── STRUCTURE.md └── TODO.md ├── src ├── hid-tmff2.c ├── hid-tmff2.h ├── tmt248 │ └── hid-tmt248.c ├── tmt300rs │ ├── hid-tmt300rs.c │ └── hid-tmt300rs.h ├── tmtspc │ └── hid-tmtspc.c ├── tmtsxw │ └── hid-tmtsxw.c └── tmtx │ └── hid-tmtx.c └── udev ├── 71-thrustmaster-steamdeck.rules └── 99-thrustmaster.rules /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/.gitmodules -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/Kbuild -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/README.md -------------------------------------------------------------------------------- /dkms/dkms-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/dkms/dkms-install.sh -------------------------------------------------------------------------------- /dkms/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/dkms/dkms.conf -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DRIVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/docs/DRIVER.md -------------------------------------------------------------------------------- /docs/FFBEFFECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/docs/FFBEFFECTS.md -------------------------------------------------------------------------------- /docs/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/docs/INTEGRATION.md -------------------------------------------------------------------------------- /docs/STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/docs/STRUCTURE.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- 1 | # TODO list 2 | 3 | + Try to figure out how/if RRRE (#39) determines FFB from wheel input 4 | -------------------------------------------------------------------------------- /src/hid-tmff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/hid-tmff2.c -------------------------------------------------------------------------------- /src/hid-tmff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/hid-tmff2.h -------------------------------------------------------------------------------- /src/tmt248/hid-tmt248.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmt248/hid-tmt248.c -------------------------------------------------------------------------------- /src/tmt300rs/hid-tmt300rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmt300rs/hid-tmt300rs.c -------------------------------------------------------------------------------- /src/tmt300rs/hid-tmt300rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmt300rs/hid-tmt300rs.h -------------------------------------------------------------------------------- /src/tmtspc/hid-tmtspc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmtspc/hid-tmtspc.c -------------------------------------------------------------------------------- /src/tmtsxw/hid-tmtsxw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmtsxw/hid-tmtsxw.c -------------------------------------------------------------------------------- /src/tmtx/hid-tmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/src/tmtx/hid-tmtx.c -------------------------------------------------------------------------------- /udev/71-thrustmaster-steamdeck.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/udev/71-thrustmaster-steamdeck.rules -------------------------------------------------------------------------------- /udev/99-thrustmaster.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimplul/hid-tmff2/HEAD/udev/99-thrustmaster.rules --------------------------------------------------------------------------------