From 94155b3ba411939a46b0753006762a1594fdd90a Mon Sep 17 00:00:00 2001 From: Stefan Jahn Date: Mon, 20 Feb 2023 22:38:15 +0100 Subject: [PATCH] Reduced calibration times to 5sec from 10sec --- posctl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posctl.cc b/posctl.cc index af0a733..97d1873 100644 --- a/posctl.cc +++ b/posctl.cc @@ -60,7 +60,7 @@ void axis_history_add(int axis, double diff, double out) { } #define CALIB_MAXSPEED 1.0 -#define CALIB_DURATION_DELTA 10.0 +#define CALIB_DURATION_DELTA 5.0 #define CALIB_DURATION_AXIS (CALIB_DURATION_DELTA / CALIB_MAXSPEED) void posctl_gui_update();