diff options
author | Sergey Vlasov <sigprof@gmail.com> | 2022-08-20 17:59:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 15:59:17 +0100 |
commit | 7ee55b17540f1ec1dfae95e870cf29d74dcea8ad (patch) | |
tree | 9138545cf10936eaff2cabbcc196353ed31c45eb /lib | |
parent | 5e2ffe7d8f4187109514147469d7db93e075f6f0 (diff) | |
download | qmk_firmware-7ee55b17540f1ec1dfae95e870cf29d74dcea8ad.tar.gz qmk_firmware-7ee55b17540f1ec1dfae95e870cf29d74dcea8ad.zip |
Fix PID value for the Keyboardio Atreus 2 bootloader (#18116)
Copy the correct PID from `util/udev/50-qmk.rules`.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/qmk/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index 10da5e7e8e..622199e46e 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -88,7 +88,7 @@ BOOTLOADER_VIDS_PIDS = { 'md-boot': {("03eb", "6124")}, 'caterina': { # pid.codes shared PID - ("1209", "9203"), # Keyboardio Atreus 2 Bootloader + ("1209", "2302"), # Keyboardio Atreus 2 Bootloader # Spark Fun Electronics ("1b4f", "9203"), # Pro Micro 3V3/8MHz ("1b4f", "9205"), # Pro Micro 5V/16MHz |