diff options
| author | tmk <nobody@nowhere> | 2013-01-23 23:53:51 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-01-23 23:53:51 +0900 |
| commit | 28b5f69ce5c8b35d40725b490e7a2d4bfe922ad4 (patch) | |
| tree | 1a427f0e0d410fee5f57bfc170e31ef2d7050ac9 /common/keyboard.c | |
| parent | 1fe820a8654b69576875a8173e22b47b365c2460 (diff) | |
| download | qmk_firmware-28b5f69ce5c8b35d40725b490e7a2d4bfe922ad4.tar.gz qmk_firmware-28b5f69ce5c8b35d40725b490e7a2d4bfe922ad4.zip | |
Add prototype of Action Function.
Diffstat (limited to 'common/keyboard.c')
| -rw-r--r-- | common/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/keyboard.c b/common/keyboard.c index 9f0ca7676..6677e8011 100644 --- a/common/keyboard.c +++ b/common/keyboard.c | |||
| @@ -89,7 +89,8 @@ void keyboard_task(void) | |||
| 89 | } | 89 | } |
| 90 | } | 90 | } |
| 91 | } | 91 | } |
| 92 | // call to update delaying layer when no real event | 92 | // call with not real event to update state of aciton |
| 93 | // TODO: use NOEVENT macro | ||
| 93 | action_exec((keyevent_t) { | 94 | action_exec((keyevent_t) { |
| 94 | .key.pos = (keypos_t){ .row = 255, .col = 255 }, // assume this key doesn't exist | 95 | .key.pos = (keypos_t){ .row = 255, .col = 255 }, // assume this key doesn't exist |
| 95 | .pressed = false, | 96 | .pressed = false, |
