summaryrefslogtreecommitdiff
path: root/app/include/dt-bindings/zmk/matrix-transform.h
blob: 4fd3e6c916921f6bf92bee3bb6bcd0ee68f254c1 (plain)
1
2
3
4
5
#define KT_ROW(item) (item >> 8)
#define KT_COL(item) (item & 0xFF)

#define RC(row, col) (((row) << 8) + (col))