diff options
author | tmk <nobody@nowhere> | 2013-01-17 11:46:38 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-01-17 12:06:28 +0900 |
commit | 567b2ae5259634a5293afbc6a710a19d7c45dcda (patch) | |
tree | 1e29736c90b7f0cc7321f1ef9a96b4fe32bf03ea /common/keyboard.h | |
parent | 9f95e9cc27f2edf4336124b01c05d03dcd5ee5ac (diff) | |
download | firmware-567b2ae5259634a5293afbc6a710a19d7c45dcda.tar.gz firmware-567b2ae5259634a5293afbc6a710a19d7c45dcda.tar.bz2 firmware-567b2ae5259634a5293afbc6a710a19d7c45dcda.zip |
Fix mods with tap key but some problems still exists.
- stuck tap key after tapping. seq[mods(d), key(d), mods(u), key(u)]
- tap key doesn't work when fast type. [key(d), mods(d), key(u),
mods(u)]
Diffstat (limited to 'common/keyboard.h')
-rw-r--r-- | common/keyboard.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/keyboard.h b/common/keyboard.h index cf85b1233..907ee1f97 100644 --- a/common/keyboard.h +++ b/common/keyboard.h @@ -26,6 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. extern "C" { #endif +// TODO: union {raw = row:col} typedef struct { uint8_t row; uint8_t col; |