-
-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
Only increment Enable status for RGB Matrix if it supports it #5664
Conversation
Also fixed by #5619 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, even though it will make me rebase my pr later =P
This worked on my doro67, would like to see confirmation that this doesn't break functionality on massdrop boards. |
@mechmerlin The Massdrop Boards are the only ones with the "extra toggle" defined. So, yeah, it shouldn't break anything. It just wasn't included in the rgb matrix code, accidently. https://github.com/qmk/qmk_firmware/blob/master/keyboards/massdrop/alt/config.h#L126 Also, #5619 addresses this, and removes the need for it altogether. But this is a smaller change. |
superseded. |
Description
Right now, the RGB Matrix toggle code increments the variable. That's fine, if
RGB_MATRIX_EXTRA_TOG
is defined. But it's not normally. So, on non-massdrop boards, it's creating an issue where you have to hit the toggle multiple times.This should fix the issue.
Types of Changes
Checklist