Add a K_NONE define

Seems like this define might as well be included. It means `layouts.py`
doesn't need to handle it specially.
This commit is contained in:
Ian Douglas Scott
2021-07-29 09:41:05 -07:00
committed by Jeremy Soller
parent 004c7acf6c
commit cd28de382d

View File

@ -36,7 +36,8 @@
uint16_t keymap_translate(uint16_t key);
// Helper definition for empty key
#define ___ 0
#define ___ (0x0000)
#define K_NONE (0x0000)
// Key types
#define KT_MASK (0xF000)