diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-20 17:54:52 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-20 17:54:52 -0400 |
commit | 7e659851c80bf2819554d93ad9971f56aa5b225b (patch) | |
tree | b0d2ee4784741cbcd3e109b71230502d87691e1b /app/include/zmk/matrix_transform.h | |
parent | d65629b9a0b79b6e294419fe9a4118fb09491c91 (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/matrix_transform.h')
-rw-r--r-- | app/include/zmk/matrix_transform.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/include/zmk/matrix_transform.h b/app/include/zmk/matrix_transform.h new file mode 100644 index 0000000..e9e969a --- /dev/null +++ b/app/include/zmk/matrix_transform.h @@ -0,0 +1,3 @@ +#pragma once + +u32_t zmk_matrix_transform_row_column_to_position(u32_t row, u32_t column);
\ No newline at end of file |