aboutsummaryrefslogtreecommitdiffstats
path: root/src/ginput/toggle.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-12-02 03:05:21 -0800
committerTectu <joel@unormal.org>2012-12-02 03:05:21 -0800
commit24e75d96e14a668ead91797bc7cb4e7d3097b3ea (patch)
treec15ea2d56eb73f3664680ea045f7146d9ba19d2b /src/ginput/toggle.c
parentef13b27a790568338f3784e13c9e4a125c16222f (diff)
parent74e94d39b9b66adeaf8bcbb8789d79110102bb15 (diff)
downloaduGFX-24e75d96e14a668ead91797bc7cb4e7d3097b3ea.tar.gz
uGFX-24e75d96e14a668ead91797bc7cb4e7d3097b3ea.tar.bz2
uGFX-24e75d96e14a668ead91797bc7cb4e7d3097b3ea.zip
Merge pull request #25 from inmarket/master
Bug fixes + new driver + extend touch demo
Diffstat (limited to 'src/ginput/toggle.c')
-rw-r--r--src/ginput/toggle.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/ginput/toggle.c b/src/ginput/toggle.c
index a49ebfd3..890ac1dc 100644
--- a/src/ginput/toggle.c
+++ b/src/ginput/toggle.c
@@ -34,10 +34,6 @@
#include "lld/ginput/toggle.h"
-#ifndef GINPUT_TOGGLE_POLL_PERIOD
- #define GINPUT_TOGGLE_POLL_PERIOD 250
-#endif
-
#define GINPUT_TOGGLE_ISON 0x01
#define GINPUT_TOGGLE_INVERT 0x02
@@ -157,5 +153,15 @@ bool_t ginputGetToggleStatus(uint16_t instance, GEventToggle *ptoggle) {
return TRUE;
}
+/* Wake up the mouse driver from an interrupt service routine (there may be new readings available) */
+void ginputToggleWakeup(void) {
+ gtimerJab(&ToggleTimer);
+}
+
+/* Wake up the mouse driver from an interrupt service routine (there may be new readings available) */
+void ginputToggleWakeupI(void) {
+ gtimerJabI(&ToggleTimer);
+}
+
#endif /* GINPUT_NEED_TOGGLE */
/** @} */