Files
kmk_firmware/kmk/consts.py
2020-11-13 23:27:48 -08:00

14 lines
258 B
Python

from micropython import const
try:
from kmk.release_info import KMK_RELEASE
except Exception:
KMK_RELEASE = 'copied-from-git'
class UnicodeMode:
NOOP = const(0)
LINUX = IBUS = const(1)
MACOS = OSX = RALT = const(2)
WINC = const(3)