|
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
7#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_INPUT_KEYMAP_H_
8#define ZEPHYR_INCLUDE_DT_BINDINGS_INPUT_KEYMAP_H_
10#define MATRIX_KEY(row, col, code) \
11 ((((row) & 0xff) << 24) | (((col) & 0xff) << 16) | ((code) & 0xffff))