This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs | |
index e8a164c..7ae2ade 100644 | |
--- a/DS4Windows/DS4Control/ControlService.cs | |
+++ b/DS4Windows/DS4Control/ControlService.cs | |
@@ -7,6 +7,9 @@ using System.Media; | |
using System.Threading.Tasks; | |
using static DS4Windows.Global; | |
using System.Threading; | |
+using Nefarius.ViGEm.Client; | |
+using Nefarius.ViGEm.Client.Targets; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.NetworkInformation; | |
using System.Net.Sockets; | |
using System.ComponentModel; | |
namespace DS4Windows | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs | |
index e8a164c..833a4a6 100644 | |
--- a/DS4Windows/DS4Control/ControlService.cs | |
+++ b/DS4Windows/DS4Control/ControlService.cs | |
@@ -39,6 +39,7 @@ namespace DS4Windows | |
}; | |
public bool suspending; | |
//SoundPlayer sp = new SoundPlayer(); | |
+ private UdpServer _udpServer; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs | |
index e8a164c..ae10895 100644 | |
--- a/DS4Windows/DS4Control/ControlService.cs | |
+++ b/DS4Windows/DS4Control/ControlService.cs | |
@@ -7,6 +7,9 @@ using System.Media; | |
using System.Threading.Tasks; | |
using static DS4Windows.Global; | |
using System.Threading; | |
+using Nefarius.ViGEm.Client; | |
+using Nefarius.ViGEm.Client.Targets; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs | |
index 14d1ea4..5215c3d 100644 | |
--- a/DS4Windows/DS4Control/ControlService.cs | |
+++ b/DS4Windows/DS4Control/ControlService.cs | |
@@ -385,6 +385,7 @@ namespace DS4Windows | |
{ | |
device.setIdleTimeout(getIdleDisconnectTimeout(ind)); | |
device.setBTPollRate(getBTPollRate(ind)); | |
+ touchPad[ind].ResetTrackAccel((int)getTrackballFriction(ind)); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Sys/HidGuardian/Device.c b/Sys/HidGuardian/Device.c | |
index 7f49c8c..8e17fdc 100644 | |
--- a/Sys/HidGuardian/Device.c | |
+++ b/Sys/HidGuardian/Device.c | |
@@ -141,6 +141,7 @@ VOID EvtDeviceFileCreate( | |
WDF_REQUEST_SEND_OPTIONS options; | |
NTSTATUS status; | |
BOOLEAN ret; | |
+ WDF_REQUEST_PARAMETERS params; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/DS4Windows/DS4Library/DS4Device.cs b/DS4Windows/DS4Library/DS4Device.cs | |
index 82919d2..aaf38a6 100644 | |
--- a/DS4Windows/DS4Library/DS4Device.cs | |
+++ b/DS4Windows/DS4Library/DS4Device.cs | |
@@ -441,6 +441,11 @@ namespace DS4Windows | |
touchpad = new DS4Touchpad(); | |
sixAxis = new DS4SixAxis(); | |
+ | |
+ byte[] calibration = new byte[41]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import sys | |
import time | |
import signal | |
import logging | |
# cd to directory containing upstream DreamPi source code | |
os.chdir("/home/ryochan7/Sources/dreampi/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file for dnsmasq. | |
# | |
# Format is one option per line, legal options are the same | |
# as the long options legal on the command line. See | |
# "/usr/sbin/dnsmasq --help" or "man 8 dnsmasq" for details. | |
# Listen on this specific port instead of the standard DNS port | |
# (53). Setting this to zero completely disables DNS function, | |
# leaving only DHCP and/or TFTP. | |
#port=5353 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
disablegids() | |
{ | |
sleep 6 | |
GAMEPAD_IDS=`xinput | grep "Virtual Gamepad (MoltenGamepad)" | awk '{print $6}' | tr -d "id="` | |
for gid in $GAMEPAD_IDS | |
do |