Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Caterina VID:PID for Keyboardio Atreus 2 Bootloader #317

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions macos/QMK Toolbox/USB.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ + (void)setupWithPrinter:(Printing *)printer andDelegate:(id<USBDelegate>)d {
CFRunLoopSourceRef runLoopSource;

caterinaVids = @[
@0x1209, // pid.codes shared PID
@0x1B4F, // Spark Fun Electronics
@0x1FFB, // Pololu Electronics
@0x2341, // Arduino SA
Expand All @@ -44,6 +45,8 @@ + (void)setupWithPrinter:(Printing *)printer andDelegate:(id<USBDelegate>)d {
@0x0037, // Micro
// Pololu Electronics
@0x0101, // A-Star 32U4
// Keyboardio (uses the pid.codes shared PID)
@0x2302, // Atreus 2 Bootloader
// Spark Fun Electronics
@0x9203, // Pro Micro 3V3/8MHz
@0x9205, // Pro Micro 5V/16MHz
Expand Down
3 changes: 3 additions & 0 deletions windows/QMK Toolbox/USB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public bool DetectBootloaderFromCollection(ManagementObjectCollection collection

private static readonly ushort[] caterinaVids =
{
0x1209, // pid.codes shared PID
0x1B4F, // Spark Fun Electronics
0x1FFB, // Pololu Electronics
0x2341, // Arduino SA
Expand All @@ -85,6 +86,8 @@ public bool DetectBootloaderFromCollection(ManagementObjectCollection collection
0x0037, // Micro
// Pololu Electronics
0x0101, // A-Star 32U4
// Keyboardio (uses the pid.codes shared PID)
0x2302, // Atreus 2 Bootloader
// Spark Fun Electronics
0x9203, // Pro Micro 3V3/8MHz
0x9205, // Pro Micro 5V/16MHz
Expand Down