summaryrefslogtreecommitdiff
path: root/app/include/zmk/keymap.h
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-06-20 17:54:52 -0400
committerPete Johanson <peter@peterjohanson.com>2020-06-20 17:54:52 -0400
commit7e659851c80bf2819554d93ad9971f56aa5b225b (patch)
treeb0d2ee4784741cbcd3e109b71230502d87691e1b /app/include/zmk/keymap.h
parentd65629b9a0b79b6e294419fe9a4118fb09491c91 (diff)
Refactor matrix transform, positions pervasively
* Do mapping to positions right in kscan handler, and then surface positions throughout the API.
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r--app/include/zmk/keymap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h
index 7866cd5..cf38904 100644
--- a/app/include/zmk/keymap.h
+++ b/app/include/zmk/keymap.h
@@ -11,4 +11,4 @@
bool zmk_keymap_layer_activate(u8_t layer);
bool zmk_keymap_layer_deactivate(u8_t layer);
-int zmk_keymap_position_state_changed(u32_t row, u32_t column, bool pressed);
+int zmk_keymap_position_state_changed(u32_t position, bool pressed);