-
-
Notifications
You must be signed in to change notification settings - Fork 39.6k
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 BOOTMAGIC_ENABLE=both which combines lite and full mode #13572
Conversation
You'll need a |
Is there a reason bootmagic full's |
Allowing BOOTMAGIC_ENABLE=both when VIA is enabled
a90aa05
to
c49f0c4
Compare
I have updated the PR to allow for both lite mode and full mode, so that there is always a 'failsafe' method to call |
As full bootmagic is on the list of things that might be removed in the near future, could you go into some detail behind the use case for this change (and maybe touch on why the magic keycodes wont suffice). |
I honestly don't have a strong use case for bootmagic full, and if its on the list of things to be removed then we can just close this PR. The main thing I liked keeping it enabled for is having the toggling of debug flags actually being written to eeprom via |
Because VIA doesn't properly hook into eeconfig_init. It's an oversight that I have a PR open to fix. |
Well, |
Full Bootmagic's removal was actually placed on the agenda for QMK back in early March, and this develop cycle is scheduled to remove Full Bootmagic as a feature. https://docs.qmk.fm/#/ChangeLog/20210529?id=bootmagic-deprecation-and-refactor |
Add BOOTMAGIC_ENABLE = both which combines lite and full mode
Description
Currently BOOTMAGIC_ENABLE can either be 'lite' ('yes') or 'full'. VIA currently forces 'lite' mode when enabled, presumably to have a method for clearing eeprom and entering bootloader mode that isn't reliant on a particular set of keys being available on layer 0 (which VIA may change).
This change allows for both 'full' mode and 'lite' mode to be enabled at the same time. VIA still defaults to enabling 'lite' mode, but will allow for 'both' mode if bootmagic 'full' functionally is also desired.
Types of Changes
Issues Fixed or Closed by This PR
Checklist