-
-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MX Master 3S times out #446
Comments
The timeout in src/logid/Configuration.h is too short. Increasing it from 500 to 1000 (ms?) fixes the problem --- a/src/logid/Configuration.h 2023-07-12 23:40:47.000000000 +0200
+++ b/src/logid/Configuration.h 2024-03-19 21:19:10.767519123 +0100
@@ -28,7 +28,7 @@
namespace logid {
namespace defaults {
- static constexpr double io_timeout = 500;
+ static constexpr double io_timeout = 1000;
static constexpr int workers = 4;
static constexpr int gesture_threshold = 50;
} |
I observe the same the same on my system:
I need to restart |
can confirm that changing the timeout from 500 to 1000 is enough to solve the problem for me |
This change fixes the timeout problem with MX Master 3S For Business for me too. |
@maciejsszmigiero I figured a developer would find the fix here and merge it. I'm not sure how to do a pull request, if you want to do it please go ahead. |
@PixlOne could you commit such timeout change? The new timeout could be 5 seconds like Linux kernel Thanks. |
Isn't it already in the config?
|
Even if there's already a way to override the io timeout in config it's better if the default one works out-of-box with any supported mouse |
Setting the value in the config doesn't work for me. It looks like the config file is not read until after the mouse has been detected. |
I can't get logid to automatically recognise my MX Master 3S. Logid times out looking for it:
logid -v2
gives me:[INFO] Detected receiver at /dev/hidraw3
...
DEBUG] /dev/hidraw3:2 timed out, waiting for input from device to initialize.
Logid then hangs indefinitely until I press the button on the bottom of the mouse three times to reconnect (or switch it off and on again). Logid then continues:
[INFO] Device found: MX Master 3S on /dev/hidraw3:2
[DEBUG] /dev/hidraw3:2 remappable buttons:
...
How can I get logid to connect automatically?
Gentoo Linux, logid version v0.3.3, using the bolt receiver. None of the solutions proposed in issue #437 work.
The text was updated successfully, but these errors were encountered: