summaryrefslogtreecommitdiffstats
path: root/common/usb_keycodes.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-08-27 08:18:01 +0200
committertmk <nobody@nowhere>2012-08-28 14:56:15 +0200
commite7c030375ac76907206db7f09cf9208b0c7c6e66 (patch)
tree8260eec8ca2fcd2124c210a8488d51dd0ae8afaf /common/usb_keycodes.h
parentc5060ea81942b0e3f8577536ff78402a19abe3d3 (diff)
downloadqmk_firmware-e7c030375ac76907206db7f09cf9208b0c7c6e66.tar.gz
qmk_firmware-e7c030375ac76907206db7f09cf9208b0c7c6e66.tar.xz
Add USB to USB converter. unmature.
Diffstat (limited to 'common/usb_keycodes.h')
-rw-r--r--common/usb_keycodes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/usb_keycodes.h b/common/usb_keycodes.h
index 9b6cce153..04b398fa2 100644
--- a/common/usb_keycodes.h
+++ b/common/usb_keycodes.h
@@ -24,6 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define IS_ERROR(code) (KB_ROLL_OVER <= (code) && (code) <= KB_UNDEFINED)
+#define IS_ANY(code) (KB_A <= (code))
#define IS_KEY(code) (KB_A <= (code) && (code) <= KB_EXSEL)
#define IS_MOD(code) (KB_LCTRL <= (code) && (code) <= KB_RGUI)
#define IS_FN(code) (KB_FN0 <= (code) && (code) <= KB_FN7)