2020-10-01 15:56:54 +10:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
2020-06-16 07:03:34 +10:00
|
|
|
|
|
|
|
#define KT_ROW(item) (item >> 8)
|
|
|
|
#define KT_COL(item) (item & 0xFF)
|
|
|
|
|
2020-06-17 11:32:11 +10:00
|
|
|
#define RC(row, col) (((row) << 8) + (col))
|