diff options
author | knolax <1339802534.kk@gmail.com> | 2017-12-29 18:55:26 -0500 |
---|---|---|
committer | knolax <1339802534.kk@gmail.com> | 2017-12-29 18:55:26 -0500 |
commit | 3dbdd1b9a99fdd46456a52401c434e0af1a326ef (patch) | |
tree | 67d468a7db4bb2401c0e594a265c531f5b4f47d5 /skey.c | |
parent | 51b2b830a8a5d7117c62013cd58222d5cf359b47 (diff) |
made DEBUGMODE affect read periods as well
Diffstat (limited to 'skey.c')
-rw-r--r-- | skey.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -336,7 +336,11 @@ int skey_update_thread (void *data) { } //sleep 500us= .5ms = 0.0005 seconds // 1 / 0.0005 = 2000 hz fastest, but it's really 1/0.00052 - usleep_range(1000000,1000000); + if (DEBUGMODE) { + usleep_range(1000000,1000000); // slower when debugging + } else { + usleep_range(500,500); + } //for when the thread has to stop if (kthread_should_stop()) { break; |