diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2021-01-30 03:53:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 19:53:56 -0800 |
commit | d92ffd1157e3ecc4ae2dbf8548c45c8b0269f664 (patch) | |
tree | 9a1a1f9d06fe6b9b41e982d37895e19749fe53ec /lib/python/qmk/os_helpers | |
parent | 3780ab3fcd4888cba4852158e11c495fc9809306 (diff) |
Adds AT90USB162 support (#11570)
* at90usb162 support
* fix missing bracket
* Apply suggestions from code review
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'lib/python/qmk/os_helpers')
-rw-r--r-- | lib/python/qmk/os_helpers/linux/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/os_helpers/linux/__init__.py b/lib/python/qmk/os_helpers/linux/__init__.py index 86850bf284..a04ac4f8a9 100644 --- a/lib/python/qmk/os_helpers/linux/__init__.py +++ b/lib/python/qmk/os_helpers/linux/__init__.py @@ -48,6 +48,7 @@ def check_udev_rules(): _udev_rule("03eb", "2ff3"), # ATmega16U4 _udev_rule("03eb", "2ff4"), # ATmega32U4 _udev_rule("03eb", "2ff9"), # AT90USB64 + _udev_rule("03eb", "2ffa"), # AT90USB162 _udev_rule("03eb", "2ffb") # AT90USB128 }, 'kiibohd': {_udev_rule("1c11", "b007")}, |