diff options
author | Paul Fertser <[email protected]> | 2020-08-28 13:08:51 +0300 |
---|---|---|
committer | Paul Fertser <[email protected]> | 2020-08-28 13:13:41 +0300 |
commit | a64186d9a4d9496fdbd3612fbaf48ee71c7446c7 (patch) | |
tree | 42eab5bd02aac8ee3e7ffa835452d997794b2196 | |
parent | b331032f30a7686743824cc59ae36464ac4555a4 (diff) | |
download | IronOS-a64186d9a4d9496fdbd3612fbaf48ee71c7446c7.tar.gz IronOS-a64186d9a4d9496fdbd3612fbaf48ee71c7446c7.zip |
Fix key autorepeat timing
This constant is in scheduler ticks so needs to be changed accordingly
to keep the old timing.
Fixes: e2c5e51fe19b2
-rw-r--r-- | workspace/TS100/Core/Inc/gui.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/workspace/TS100/Core/Inc/gui.hpp b/workspace/TS100/Core/Inc/gui.hpp index 1b7827d3..57fb04a4 100644 --- a/workspace/TS100/Core/Inc/gui.hpp +++ b/workspace/TS100/Core/Inc/gui.hpp @@ -11,7 +11,7 @@ #include "Settings.h"
#include "BSP.h"
-#define PRESS_ACCEL_STEP 3
+#define PRESS_ACCEL_STEP 30
#define PRESS_ACCEL_INTERVAL_MIN 100
#define PRESS_ACCEL_INTERVAL_MAX 300
|