This repository was the first attempt of making the VRS DFP wheelbase working. For user convenience i created more universal patch for pidff, which can support not only VRS DFP, but Moza and Cammus as well (and may be more later). Please, check it out: https://github.com/JacKeTUs/universal-pidff
Linux module driver for VRS driving wheels.
VRS wheels are basically DirectInput wheels. In that repository - copy of pidff driver from 6.6 kernel with some changes around infinite length effects (like that berarma/ffbtools#26)
And that's basically it
- VRS Driving Force Pro
- FFB (all effects from device descriptor)
- Setup through VRS with some tweaking) (not tested)
Firmware Update
function. Use Windows PC or Windows VM at the moment.
You can install it through DKMS or manually.
- Install
dkms
- Clone repository to
/usr/src/vrs-ff
- Install the module:
sudo dkms install /usr/src/vrs-ff
- Update initramfs:
sudo update-initramfs -u
- Reboot
To remove module:
sudo dkms remove vrs-ff/<version> --all
- Install
linux-headers-$(uname -r)
- Clone repository
make
sudo insmod hid-vrs-ff.ko
To unload module:
sudo rmmod hid_vrs_ff
You can do it through VRS with Wine. You need to tweak Wine prefix for them.
That soft uses hidraw to set up a base. You need to create udev
rule for allow access to hidraw device:
echo 'KERNEL=="hidraw*", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="a355", MODE="0666", TAG+="uaccess"' | sudo tee /etc/udev/rules.d/11-vrs.rules
udevadm control --reload-rules && udevadm trigger
Then you need to force VRS soft to use hidraw, not SDL, to find devices:
-
Create new Wine prefix for them:
mkdir ~/vrs-wine
-
Launch regedit in prefix:
WINEPREFIX=$HOME/vrs-wine wine regedit
-
Create two keys in
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\winebus
:DisableInput
(DWORD) - set to1
;Enable SDL
(DWORD) - set to0
; (yes, variable name contains space)
-
Now you can launch soft through that WINEPREFIX:
WINEPREFIX=$HOME/vrs-wine wine VRS.exe
- launch your soft from installation directory.
- Firmware update does not work. Please use Windows machine or Windows VM for any firmware updates
You tell me please
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.