Deploying to gh-pages from master @ 88fe5c16a5
🚀
parent
c34eb456b9
commit
e5cab0b3cf
@ -0,0 +1,457 @@ |
||||
# QMK Breaking Changes - 2021 November 27 Changelog |
||||
|
||||
## 2000 keyboards! :id=qmk-2000th-keyboard |
||||
|
||||
QMK had it's 2000th keyboard submitted during this breaking changes cycle.... and it only _just_ made the cut-off! |
||||
|
||||
```shell |
||||
% qmk list-keyboards | wc -l |
||||
2003 |
||||
``` |
||||
|
||||
From the whole QMK team, a major thankyou to the community for embracing QMK as your preferred keyboard firmware! |
||||
|
||||
## Notable Features :id=notable-features |
||||
|
||||
### Expanded Pointing Device support ([#14343](https://github.com/qmk/qmk_firmware/pull/14343)) :id=expanded-pointing-device |
||||
|
||||
Pointing device support has been reworked and reimplemented to allow for easier integration of new peripherals. |
||||
|
||||
Usages of `POINTING_DEVICE_ENABLE = yes` in `rules.mk` files now need to be accompanied by a corresponding `POINTING_DEVICE_DRIVER = ???` line, specifying which driver to use during the build. Existing keyboards have already been migrated across to the new usage pattern, so most likely no change is required by users. |
||||
|
||||
QMK now has core-supplied support for the following pointing device peripherals: |
||||
|
||||
| `rules.mk` line | Supported device | |
||||
|------------------------------------------------|-----------------------------------------| |
||||
| `POINTING_DEVICE_DRIVER = analog_joystick` | Analog joysticks, such as PSP joysticks | |
||||
| `POINTING_DEVICE_DRIVER = adns5050` | ADNS 5050 sensor | |
||||
| `POINTING_DEVICE_DRIVER = adns9800` | ADNS 9800 laser sensor | |
||||
| `POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c` | Cirque touchpad, I2C mode | |
||||
| `POINTING_DEVICE_DRIVER = cirque_pinnacle_spi` | Cirque Touchpad, SPI mode | |
||||
| `POINTING_DEVICE_DRIVER = pimoroni_trackball` | Pimoroni Trackball | |
||||
| `POINTING_DEVICE_DRIVER = pmw3360` | PMW 3360 | |
||||
|
||||
See the new documentation for the [Pointing Device](../feature_pointing_device.md) feature for more information on specific configuration for each driver. |
||||
|
||||
### Dynamic Tapping Term ([#11036](https://github.com/qmk/qmk_firmware/pull/11036)) :id=dynamic-tapping-term |
||||
|
||||
For people who are starting out with tapping keys, or for people who think tapping keys don't "feel right", it's sometimes quite difficult to determine what duration of tapping term to use to make things seem natural. |
||||
|
||||
If you're in this stage of discovery, you can now add `DYNAMIC_TAPPING_TERM_ENABLE = yes` to your `rules.mk`, which enables the use of the following keycodes in your keymap: |
||||
|
||||
| Key | Description | |
||||
|-----------|-------------------------------------------------------------------------------| |
||||
| `DT_PRNT` | "Dynamic Tapping Term Print": Types the current tapping term, in milliseconds | |
||||
| `DT_UP` | "Dynamic Tapping Term Up": Increases the current tapping term by 5ms | |
||||
| `DT_DOWN` | "Dynamic Tapping Term Down": Decreases the current tapping term by 5ms | |
||||
|
||||
Coupled with the use of `qmk console` or QMK Toolbox to show console output from your keyboard, you can tweak the tapping term dynamically in order to narrow down what "feels right" to you. Once you're happy, drop in the resulting number into your keymap's `config.h` and you're good to go! |
||||
|
||||
### Macros in JSON keymaps ([#14374](https://github.com/qmk/qmk_firmware/pull/14374)) :id=macros-in-keymap-json |
||||
|
||||
You can now define up to 32 macros in your `keymap.json` file, as used by [QMK Configurator](newbs_building_firmware_configurator.md), and `qmk compile`. You can define these macros in a list under the `macros` keyword, like this: |
||||
|
||||
```json |
||||
{ |
||||
"keyboard": "handwired/my_macropad", |
||||
"keymap": "my_keymap", |
||||
"macros": [ |
||||
[ // first listed is MACRO_0... |
||||
{"action":"down", "keycodes": ["LSFT"]}, |
||||
"hello world1", |
||||
{"action": "up","keycodes": ["LSFT"]} |
||||
], |
||||
[ // ...then MACRO_1... |
||||
{"action":"tap", "keycodes": ["LCTL", "LALT", "DEL"]} |
||||
], |
||||
[ // ...then MACRO_2... |
||||
"ding!", |
||||
{"action":"beep"} |
||||
], |
||||
[ // ...and MACRO_3. |
||||
{"action":"tap", "keycodes": ["F1"]}, |
||||
{"action":"delay", "duration": "1000"}, |
||||
{"action":"tap", "keycodes": ["PGDN"]} |
||||
] |
||||
], |
||||
"layout": "LAYOUT_all", |
||||
"layers": [ |
||||
["MACRO_0", "MACRO_1", "MACRO_2", "MACRO_3"] |
||||
] |
||||
} |
||||
``` |
||||
|
||||
In due course, [QMK Configurator](https://config.qmk.fm/) will pick up support for defining these in its UI, but for now the json is the only way to define macros. |
||||
|
||||
## Changes Requiring User Action :id=changes-requiring-user-action |
||||
|
||||
### Updated Keyboard Codebases :id=updated-keyboard-codebases |
||||
|
||||
The following keyboards have had their source moved within QMK: |
||||
|
||||
| Old Keyboard Name | New Keyboard Name | |
||||
|------------------------|---------------------------------| |
||||
| aozora/hotswap | aozora | |
||||
| gskt00 | kapcave/gskt00 | |
||||
| handwired/dtisaac01 | dtisaac/dtisaac01 | |
||||
| kprepublic/bm60poker | kprepublic/bm60hsrgb_poker/rev1 | |
||||
| kprepublic/bm60rgb | kprepublic/bm60hsrgb/rev1 | |
||||
| kprepublic/bm60rgb_iso | kprepublic/bm60hsrgb_iso/rev1 | |
||||
| kprepublic/bm65iso | kprepublic/bm65hsrgb_iso | |
||||
| kprepublic/bm68rgb | kprepublic/bm68hsrgb | |
||||
| paladin64 | kapcave/paladin64 | |
||||
| portal_66 | portal_66/soldered | |
||||
| signum/3_0/elitec | signum/3_0 | |
||||
| tgr/jane | tgr/jane/v2 | |
||||
|
||||
### Squeezing space out of AVR ([#15243](https://github.com/qmk/qmk_firmware/pull/15243)) :id=squeezing-space-from-avr |
||||
|
||||
The AVR platform has been problematic for some time, in the sense that it is severely resource-constrained -- this makes life difficult for anyone attempting to add new functionality such as display panels to their keymap code. The illustrious Drashna has contributed some newer documentation on how to attempt to free up some space on AVR-based keyboards that are in short supply. |
||||
|
||||
Of course, there are much fewer constraints with ARM chips... ;) |
||||
|
||||
### Require explicit enabling of RGB Matrix modes ([#15018](https://github.com/qmk/qmk_firmware/pull/15018)) :id=explicit-rgb-modes |
||||
|
||||
Related to the previous section -- RGB Matrix modes have now been made to be opt-in, rather than opt-out. As these animations are now opt-in, you may find that your keyboard no longer has all the RGB modes you're expecting -- you may need to configure and recompile your firmware and enable your animations of choice... with any luck they'll still fit in the space available. |
||||
|
||||
Most keyboards keep their original functionality, but over time the QMK maintainers have found that removal of animations ends up being the quickest way to free up space... and some keyboards have had animations such as reactive effects disabled by default in order to still fit within the flash space available. |
||||
|
||||
The full list of configurables to turn specific animations back on can be found at on the [RGB Matrix documentation](feature_rgb_matrix.md#rgb-matrix-effects) page. |
||||
|
||||
### OLED task refactoring ([#14864](https://github.com/qmk/qmk_firmware/pull/14864)) :id=oled-task-refactor |
||||
|
||||
OLED display code was traditionally difficult to override in keymaps as they did not follow the standard pattern of `bool *_kb()` deferring to `bool *_user()` functions, allowing signalling to the higher level that processing had already been done. |
||||
|
||||
This changes the standard OLED drawing function model to allow for a base implementation to be provided by a keyboard, but also still allow for keymap-level overrides without needing to modify the keyboard's code. |
||||
|
||||
The old keymap code went something like this: |
||||
|
||||
```c |
||||
void oled_task_user(void) { |
||||
// keymap drawing code |
||||
} |
||||
``` |
||||
|
||||
...but the new keymap code looks like this: |
||||
```c |
||||
bool oled_task_user(void) { |
||||
// keymap drawing code |
||||
return false; |
||||
} |
||||
``` |
||||
|
||||
Keyboard designers should now structure their keyboard-level drawing routines like the following, in order to allow for keymap overrides: |
||||
|
||||
```c |
||||
bool oled_task_kb(void) { |
||||
// Defer to the keymap if they want to override |
||||
if(!oled_task_user()) { return false; } |
||||
|
||||
// default keyboard drawing code |
||||
return false; |
||||
} |
||||
``` |
||||
|
||||
### Bootmagic Full Removal ([#15002](https://github.com/qmk/qmk_firmware/pull/15002)) :id=bootmagic-full-removal |
||||
|
||||
As noted during previous breaking changes cycles, QMK decided to deprecate the full Bootmagic feature and leave Bootmagic Lite as the only remaining option. |
||||
|
||||
This removal is now complete! |
||||
|
||||
This pull request changes the behavior of `BOOTMAGIC_ENABLE` such that specifying `lite` or `full` results in an error, allowing only `yes` or `no`, with `yes` mirroring historical `lite` functionality. |
||||
|
||||
All use of the `lite` keyword within the repository has been migrated to `yes` -- any new submissions using `lite` will now fail to build and should be updated accordingly. |
||||
|
||||
#### Bootmagic Full Deprecation Schedule: Complete! |
||||
|
||||
This is the historical timeline for the behavior of `BOOTMAGIC_ENABLE`: |
||||
|
||||
- (done) From 2021 May 29, setting `BOOTMAGIC_ENABLE = yes` will enable Bootmagic Lite instead of full Bootmagic. |
||||
- (done) From 2021 Aug 28, `BOOTMAGIC_ENABLE` must be either `yes`, `lite`, or `no` – setting `BOOTMAGIC_ENABLE = full` will cause compilation to fail. |
||||
- (now) From 2021 Nov 27, `BOOTMAGIC_ENABLE` must be either `yes` or `no` – setting `BOOTMAGIC_ENABLE = lite` will cause compilation to fail. |
||||
|
||||
### Remove QWIIC_DRIVERS ([#14174](https://github.com/qmk/qmk_firmware/pull/14174)) :id=remove-qwiic |
||||
|
||||
Due to minimal QWIIC adoption and other options for similar functionality, the QWIIC drivers were removed from QMK. Existing OLED usages have been migrated across to the normal QMK OLED driver instead. |
||||
|
||||
## Notable core changes :id=notable-core |
||||
|
||||
### New MCU Support :id=new-mcu-support |
||||
|
||||
QMK firmware picked up support for a handful of new MCU families, potentially making it a bit easier to source components. |
||||
|
||||
QMK firmware is now no longer limited to AVR and ARM - it also picked up support for our first RISC-V chip, the GD32VF103. |
||||
|
||||
* Add support for RISC-V builds and GD32VF103 MCU ([#12508](https://github.com/qmk/qmk_firmware/pull/12508)) |
||||
* Add HT32 support to core ([#14388](https://github.com/qmk/qmk_firmware/pull/14388)) |
||||
* Westberrytech pr ([#14422](https://github.com/qmk/qmk_firmware/pull/14422)) |
||||
* Initial pass of F405 support ([#14584](https://github.com/qmk/qmk_firmware/pull/14584)) |
||||
|
||||
### EEPROM Changes :id=eeprom-changes |
||||
|
||||
There were a few EEPROM-related changes that landed during this breaking changes cycle, most prominently the long-awaited ability for the Drop boards to gain persistent storage. Any users of the Drop CTRL or Drop ALT should update QMK Toolbox as well -- coupled with a QMK firmware update settings should now be saved. |
||||
|
||||
* massdrop alt/ctrl: support saving into nvm ([#6068](https://github.com/qmk/qmk_firmware/pull/6068)) |
||||
* Implement F4 eeprom ([#14195](https://github.com/qmk/qmk_firmware/pull/14195)) |
||||
* make the full 4096 bytes of EEPROM work on Teensy 3.6 ([#12947](https://github.com/qmk/qmk_firmware/pull/12947)) |
||||
* Further tidy up of STM32 eeprom emulation ([#14591](https://github.com/qmk/qmk_firmware/pull/14591)) |
||||
* Enable eeprom with F401xE ld ([#14752](https://github.com/qmk/qmk_firmware/pull/14752)) |
||||
|
||||
### Compilation Database :id=compile-commands |
||||
|
||||
A clang-compatible compilation database generator has been added as an option in order to help development environments such as Visual Studio Code. |
||||
|
||||
Running `qmk generate-compilation-database -kb <yourkb> -km <yourkeymap>` from within the QMK firmware directory will generate a `compile_commands.json` file -- using a compatible IDE will likely see this and correctly start detecting the correct locations for source files as well as type and function information that are relevant to your build. |
||||
|
||||
Do note that switching keyboards will require re-generation of this file. |
||||
|
||||
* New CLI subcommand to create clang-compatible compilation database (`compile_commands.json`) ([#14370](https://github.com/qmk/qmk_firmware/pull/14370)) |
||||
* compiledb: query include paths from gcc directly. ([#14462](https://github.com/qmk/qmk_firmware/pull/14462)) |
||||
|
||||
### Codebase restructure and cleanup :id=codebase-restructure |
||||
|
||||
QMK continues on its restructuring journey, in order to make it easier to integrate newer features and add support for new hardware. This quarter's batch of changes include: |
||||
|
||||
* add 'include keyboard_features.mk' into build_keyboard.mk ([#8422](https://github.com/qmk/qmk_firmware/pull/8422)) |
||||
* Infer more when building features ([#13890](https://github.com/qmk/qmk_firmware/pull/13890)) |
||||
* Move `tmk_core/common/<plat>` ([#13918](https://github.com/qmk/qmk_firmware/pull/13918)) |
||||
* Move feature suspend logic out of platform specific code ([#14210](https://github.com/qmk/qmk_firmware/pull/14210)) |
||||
* Remove bin/qmk ([#14231](https://github.com/qmk/qmk_firmware/pull/14231)) |
||||
* Move Audio drivers from quantum to platform drivers folder ([#14308](https://github.com/qmk/qmk_firmware/pull/14308)) |
||||
* Remove Arduino-style `analogRead()` ([#14348](https://github.com/qmk/qmk_firmware/pull/14348)) |
||||
* Remove unreferenced IBM4704, Sony NEWS, NeXT keyboard code. ([#14380](https://github.com/qmk/qmk_firmware/pull/14380)) |
||||
* Move Bluetooth config to common_features.mk ([#14404](https://github.com/qmk/qmk_firmware/pull/14404)) |
||||
* Relocate Adafruit BLE code ([#14530](https://github.com/qmk/qmk_firmware/pull/14530)) |
||||
* Change `MK66F18` -> `MK66FX1M0` ([#14659](https://github.com/qmk/qmk_firmware/pull/14659)) |
||||
* Remove sysex API ([#14723](https://github.com/qmk/qmk_firmware/pull/14723)) |
||||
* Basic keycode overhaul ([#14726](https://github.com/qmk/qmk_firmware/pull/14726)) |
||||
* Remove SERIAL_LINK feature ([#14727](https://github.com/qmk/qmk_firmware/pull/14727)) |
||||
* Move converter specific tmk_core protocols ([#14743](https://github.com/qmk/qmk_firmware/pull/14743)) |
||||
* Align PS/2 GPIO defines ([#14745](https://github.com/qmk/qmk_firmware/pull/14745)) |
||||
* Clean up LED/RGB Matrix driver config ([#14760](https://github.com/qmk/qmk_firmware/pull/14760)) |
||||
* Update UART driver API ([#14839](https://github.com/qmk/qmk_firmware/pull/14839)) |
||||
* Tidy up LCD_ENABLE/visualizer references ([#14855](https://github.com/qmk/qmk_firmware/pull/14855)) |
||||
* Remove legacy Makefile functionality ([#14858](https://github.com/qmk/qmk_firmware/pull/14858)) |
||||
* Begin to carve out platform/protocol API - Migrate keyboard_* calls ([#14888](https://github.com/qmk/qmk_firmware/pull/14888)) |
||||
* Rename platform SRC variable ([#14894](https://github.com/qmk/qmk_firmware/pull/14894)) |
||||
* Relocate PS2 code ([#14895](https://github.com/qmk/qmk_firmware/pull/14895)) |
||||
* Move USE_CCACHE logic to common location ([#14899](https://github.com/qmk/qmk_firmware/pull/14899)) |
||||
* Migrate makefile utilities to sub-directory ([#14917](https://github.com/qmk/qmk_firmware/pull/14917)) |
||||
* Remove SERIAL_MOUSE ([#14969](https://github.com/qmk/qmk_firmware/pull/14969)) |
||||
* Relocate protocol files within tmk_core/common/ ([#14972](https://github.com/qmk/qmk_firmware/pull/14972)) |
||||
* More platform/protocol alignment ([#14976](https://github.com/qmk/qmk_firmware/pull/14976)) |
||||
* Fix uart function prototypes ([#15162](https://github.com/qmk/qmk_firmware/pull/15162)) |
||||
* Remove deprecated KEYMAP alias ([#15037](https://github.com/qmk/qmk_firmware/pull/15037)) |
||||
* Move non-assignment code to post_rules.mk ([#14207](https://github.com/qmk/qmk_firmware/pull/14207)) |
||||
* Helix use `post_rules.mk` ([#14216](https://github.com/qmk/qmk_firmware/pull/14216)) |
||||
* Make ChibiOS PAL interactions less STM32 specific - Round 2 ([#14456](https://github.com/qmk/qmk_firmware/pull/14456)) |
||||
|
||||
--- |
||||
|
||||
## Full changelist |
||||
|
||||
Core: |
||||
* massdrop alt/ctrl: support saving into nvm ([#6068](https://github.com/qmk/qmk_firmware/pull/6068)) |
||||
* Made AVR backlight pwm resolution configurable ([#7521](https://github.com/qmk/qmk_firmware/pull/7521)) |
||||
* add 'include keyboard_features.mk' into build_keyboard.mk ([#8422](https://github.com/qmk/qmk_firmware/pull/8422)) |
||||
* New feature: `DYNAMIC_TAPPING_TERM_ENABLE` ([#11036](https://github.com/qmk/qmk_firmware/pull/11036)) |
||||
* Add Retro Shift (Auto Shift for Tap Hold via Retro Tapping) and Custom Auto Shifts ([#11059](https://github.com/qmk/qmk_firmware/pull/11059)) |
||||
* Add support for RISC-V builds and GD32VF103 MCU ([#12508](https://github.com/qmk/qmk_firmware/pull/12508)) |
||||
* Add Fractal RGB matrix effects ([#12670](https://github.com/qmk/qmk_firmware/pull/12670)) |
||||
* Added power tracking api ([#12691](https://github.com/qmk/qmk_firmware/pull/12691)) |
||||
* haptic: Feature to disable it when usb port is not configured or suspended. ([#12692](https://github.com/qmk/qmk_firmware/pull/12692)) |
||||
* make the full 4096 bytes of EEPROM work on Teensy 3.6 ([#12947](https://github.com/qmk/qmk_firmware/pull/12947)) |
||||
* Add Support for USB programmable buttons ([#12950](https://github.com/qmk/qmk_firmware/pull/12950)) |
||||
* [Tests] Increase QMK test coverage ([#13789](https://github.com/qmk/qmk_firmware/pull/13789)) |
||||
* Add support for ISSI drivers on both sides of a split keyboard ([#13842](https://github.com/qmk/qmk_firmware/pull/13842)) |
||||
* Infer more when building features ([#13890](https://github.com/qmk/qmk_firmware/pull/13890)) |
||||
* Reimplements WPM feature to be smaller & precise ([#13902](https://github.com/qmk/qmk_firmware/pull/13902)) |
||||
* Move `tmk_core/common/<plat>` ([#13918](https://github.com/qmk/qmk_firmware/pull/13918)) |
||||
* Improvements to handling of disconnected split keyboards. ([#14033](https://github.com/qmk/qmk_firmware/pull/14033)) |
||||
* Add Pixel Rain RGB Matrix effect ([#14155](https://github.com/qmk/qmk_firmware/pull/14155)) |
||||
* Remove QWIIC_DRIVERS ([#14174](https://github.com/qmk/qmk_firmware/pull/14174)) |
||||
* Add LM() keys to the list of keys disabled by NO_HAPTIC_MOD ([#14181](https://github.com/qmk/qmk_firmware/pull/14181)) |
||||
* Implement F4 eeprom ([#14195](https://github.com/qmk/qmk_firmware/pull/14195)) |
||||
* define to AUTO_SHIFT_DISABLED_AT_STARTUP ([#14201](https://github.com/qmk/qmk_firmware/pull/14201)) |
||||
* Move feature suspend logic out of platform specific code ([#14210](https://github.com/qmk/qmk_firmware/pull/14210)) |
||||
* Remove bin/qmk ([#14231](https://github.com/qmk/qmk_firmware/pull/14231)) |
||||
* Change keyboard level include guards to `pragma once` ([#14248](https://github.com/qmk/qmk_firmware/pull/14248)) |
||||
* i2c_master: Add support for reading/writing to 16-bit registers ([#14289](https://github.com/qmk/qmk_firmware/pull/14289)) |
||||
* Move Audio drivers from quantum to platform drivers folder ([#14308](https://github.com/qmk/qmk_firmware/pull/14308)) |
||||
* Add RGBW support to PWM and SPI drivers for ChibiOS ([#14327](https://github.com/qmk/qmk_firmware/pull/14327)) |
||||
* Rework and expand Pointing Device support ([#14343](https://github.com/qmk/qmk_firmware/pull/14343)) |
||||
* Remove Arduino-style `analogRead()` ([#14348](https://github.com/qmk/qmk_firmware/pull/14348)) |
||||
* Macros in JSON keymaps ([#14374](https://github.com/qmk/qmk_firmware/pull/14374)) |
||||
* Remove unreferenced IBM4704, Sony NEWS, NeXT keyboard code. ([#14380](https://github.com/qmk/qmk_firmware/pull/14380)) |
||||
* Add HT32 support to core ([#14388](https://github.com/qmk/qmk_firmware/pull/14388)) |
||||
* Align ChibiOS I2C defs with other drivers ([#14399](https://github.com/qmk/qmk_firmware/pull/14399)) |
||||
* Move Bluetooth config to common_features.mk ([#14404](https://github.com/qmk/qmk_firmware/pull/14404)) |
||||
* Westberrytech pr ([#14422](https://github.com/qmk/qmk_firmware/pull/14422)) |
||||
* Refactor use of STM32_SYSCLK ([#14430](https://github.com/qmk/qmk_firmware/pull/14430)) |
||||
* Migrate STM32_EEPROM_ENABLE to use EEPROM_DRIVER ([#14433](https://github.com/qmk/qmk_firmware/pull/14433)) |
||||
* Refactor use of _STM32_ defines ([#14439](https://github.com/qmk/qmk_firmware/pull/14439)) |
||||
* Add i2c defaults for Convert to Proton C ([#14470](https://github.com/qmk/qmk_firmware/pull/14470)) |
||||
* Use opendrain pin with external pullup again ([#14474](https://github.com/qmk/qmk_firmware/pull/14474)) |
||||
* Add ability to use numpad digits for unicode mode UC_WIN ([#14496](https://github.com/qmk/qmk_firmware/pull/14496)) |
||||
* Enable de-ghosting for RGB/LED matrix on all ISSI LED drivers ([#14508](https://github.com/qmk/qmk_firmware/pull/14508)) |
||||
* Relocate Adafruit BLE code ([#14530](https://github.com/qmk/qmk_firmware/pull/14530)) |
||||
* Initial pass of F405 support ([#14584](https://github.com/qmk/qmk_firmware/pull/14584)) |
||||
* Further tidy up of STM32 eeprom emulation ([#14591](https://github.com/qmk/qmk_firmware/pull/14591)) |
||||
* Remove GCC version check from song list inclusion ([#14600](https://github.com/qmk/qmk_firmware/pull/14600)) |
||||
* Change `MK66F18` -> `MK66FX1M0` ([#14659](https://github.com/qmk/qmk_firmware/pull/14659)) |
||||
* Add ifndef to WS2812 timing constraints ([#14678](https://github.com/qmk/qmk_firmware/pull/14678)) |
||||
* Reuse of EEPROM debounce logic ([#14699](https://github.com/qmk/qmk_firmware/pull/14699)) |
||||
* Remove sysex API ([#14723](https://github.com/qmk/qmk_firmware/pull/14723)) |
||||
* Basic keycode overhaul ([#14726](https://github.com/qmk/qmk_firmware/pull/14726)) |
||||
* Remove SERIAL_LINK feature ([#14727](https://github.com/qmk/qmk_firmware/pull/14727)) |
||||
* Enable CLI flashing via mdloader ([#14729](https://github.com/qmk/qmk_firmware/pull/14729)) |
||||
* Correct the Turkish F '?' keycode (TR_QUES) ([#14740](https://github.com/qmk/qmk_firmware/pull/14740)) |
||||
* Move converter specific tmk_core protocols ([#14743](https://github.com/qmk/qmk_firmware/pull/14743)) |
||||
* Align PS/2 GPIO defines ([#14745](https://github.com/qmk/qmk_firmware/pull/14745)) |
||||
* Improve Adafruit BLE configuration defines ([#14749](https://github.com/qmk/qmk_firmware/pull/14749)) |
||||
* Enable eeprom with F401xE ld ([#14752](https://github.com/qmk/qmk_firmware/pull/14752)) |
||||
* Clean up LED/RGB Matrix driver config ([#14760](https://github.com/qmk/qmk_firmware/pull/14760)) |
||||
* Initial USB2422 driver ([#14835](https://github.com/qmk/qmk_firmware/pull/14835)) |
||||
* Update UART driver API ([#14839](https://github.com/qmk/qmk_firmware/pull/14839)) |
||||
* Split out arm_atsam shift register logic ([#14848](https://github.com/qmk/qmk_firmware/pull/14848)) |
||||
* Split out HAPTIC_ENABLE to have separate DRIVER option ([#14854](https://github.com/qmk/qmk_firmware/pull/14854)) |
||||
* Tidy up LCD_ENABLE/visualizer references ([#14855](https://github.com/qmk/qmk_firmware/pull/14855)) |
||||
* Remove legacy Makefile functionality ([#14858](https://github.com/qmk/qmk_firmware/pull/14858)) |
||||
* Add support for deferred executors. ([#14859](https://github.com/qmk/qmk_firmware/pull/14859)) |
||||
* Change OLED task function to be boolean ([#14864](https://github.com/qmk/qmk_firmware/pull/14864)) |
||||
* Add a new led driver for Keychron's keyboards. ([#14872](https://github.com/qmk/qmk_firmware/pull/14872)) |
||||
* Begin to carve out platform/protocol API - Migrate keyboard_* calls ([#14888](https://github.com/qmk/qmk_firmware/pull/14888)) |
||||
* Rename platform SRC variable ([#14894](https://github.com/qmk/qmk_firmware/pull/14894)) |
||||
* Relocate PS2 code ([#14895](https://github.com/qmk/qmk_firmware/pull/14895)) |
||||
* Move USE_CCACHE logic to common location ([#14899](https://github.com/qmk/qmk_firmware/pull/14899)) |
||||
* Migrate makefile utilities to sub-directory ([#14917](https://github.com/qmk/qmk_firmware/pull/14917)) |
||||
* Remove legacy handling for ErgoDox Infinity handedness ([#14919](https://github.com/qmk/qmk_firmware/pull/14919)) |
||||
* Align usbasp flashing behaviour ([#14928](https://github.com/qmk/qmk_firmware/pull/14928)) |
||||
* Optimize matrix scanning by removing variable shifts ([#14947](https://github.com/qmk/qmk_firmware/pull/14947)) |
||||
* Stop-gap forward-port Drop LED features for CTRL and ALT ([#14967](https://github.com/qmk/qmk_firmware/pull/14967)) |
||||
* Remove SERIAL_MOUSE ([#14969](https://github.com/qmk/qmk_firmware/pull/14969)) |
||||
* Relocate protocol files within tmk_core/common/ ([#14972](https://github.com/qmk/qmk_firmware/pull/14972)) |
||||
* Move LTO logic from common.mk ([#14973](https://github.com/qmk/qmk_firmware/pull/14973)) |
||||
* More platform/protocol alignment ([#14976](https://github.com/qmk/qmk_firmware/pull/14976)) |
||||
* Add support to persist MD LED framework settings ([#14980](https://github.com/qmk/qmk_firmware/pull/14980)) |
||||
* Enable configuration of PWM frequency for IS31FL3733B ([#14983](https://github.com/qmk/qmk_firmware/pull/14983)) |
||||
* Remove `BOOTMAGIC_ENABLE = lite` option ([#15002](https://github.com/qmk/qmk_firmware/pull/15002)) |
||||
* Manually format develop ([#15003](https://github.com/qmk/qmk_firmware/pull/15003)) |
||||
* Require explicit enabling of RGB Matrix modes ([#15018](https://github.com/qmk/qmk_firmware/pull/15018)) |
||||
* Remove deprecated KEYMAP alias ([#15037](https://github.com/qmk/qmk_firmware/pull/15037)) |
||||
* Fix uart function prototypes ([#15162](https://github.com/qmk/qmk_firmware/pull/15162)) |
||||
* Rename RGB fractal ([#15174](https://github.com/qmk/qmk_firmware/pull/15174)) |
||||
* Format code according to conventions ([#15195](https://github.com/qmk/qmk_firmware/pull/15195)) |
||||
* Format code according to conventions ([#15196](https://github.com/qmk/qmk_firmware/pull/15196)) |
||||
* Add uint to char functions ([#15244](https://github.com/qmk/qmk_firmware/pull/15244)) |
||||
* [Tests] Increase QMK test coverage take 2 ([#15269](https://github.com/qmk/qmk_firmware/pull/15269)) |
||||
* Tidy up adjustable ws2812 timing ([#15299](https://github.com/qmk/qmk_firmware/pull/15299)) |
||||
* Add script for performing compilation size regression investigations. ([#15303](https://github.com/qmk/qmk_firmware/pull/15303)) |
||||
* WB32F3G71 config migration with removal of unnecessary items. ([#15309](https://github.com/qmk/qmk_firmware/pull/15309)) |
||||
* Re-add encoder tests ([#15312](https://github.com/qmk/qmk_firmware/pull/15312)) |
||||
|
||||
CLI: |
||||
* Add check for non-assignment code in rules.mk ([#12108](https://github.com/qmk/qmk_firmware/pull/12108)) |
||||
* Export list of `develop` PRs to be merged into `master` ([#13944](https://github.com/qmk/qmk_firmware/pull/13944)) |
||||
* remove qmk console, which is now part of the global cli ([#14206](https://github.com/qmk/qmk_firmware/pull/14206)) |
||||
* New CLI subcommand to create clang-compatible compilation database (`compile_commands.json`) ([#14370](https://github.com/qmk/qmk_firmware/pull/14370)) |
||||
* compiledb: query include paths from gcc directly. ([#14462](https://github.com/qmk/qmk_firmware/pull/14462)) |
||||
|
||||
Submodule updates: |
||||
* Update to ChibiOS 20.3.4, support builds against trunk ([#14208](https://github.com/qmk/qmk_firmware/pull/14208)) |
||||
* Update ChibiOS-Contrib ([#14408](https://github.com/qmk/qmk_firmware/pull/14408)) |
||||
* Update ChibiOS-Contrib ([#14419](https://github.com/qmk/qmk_firmware/pull/14419)) |
||||
* Purge uGFX. ([#14720](https://github.com/qmk/qmk_firmware/pull/14720)) |
||||
|
||||
Keyboards: |
||||
* Add support for PaladinPad, Arya pcb and move keyboards by KapCave into their own directory ([#14194](https://github.com/qmk/qmk_firmware/pull/14194)) |
||||
* Move non-assignment code to post_rules.mk ([#14207](https://github.com/qmk/qmk_firmware/pull/14207)) |
||||
* Helix use `post_rules.mk` ([#14216](https://github.com/qmk/qmk_firmware/pull/14216)) |
||||
* handwired/symmetric70_proto use post_rules.mk ([#14235](https://github.com/qmk/qmk_firmware/pull/14235)) |
||||
* Add Adelais PCB. Adelais RGB rev.3, Adelais rev. 4 APM32F103, Adelais AVR rev. 1 ([#14252](https://github.com/qmk/qmk_firmware/pull/14252)) |
||||
* GMMK Pro keymap ([#14389](https://github.com/qmk/qmk_firmware/pull/14389)) |
||||
* Migrate boston_meetup/2019 away from QWIIC_DRIVERS ([#14413](https://github.com/qmk/qmk_firmware/pull/14413)) |
||||
* Migrate hadron away from QWIIC_DRIVERS ([#14415](https://github.com/qmk/qmk_firmware/pull/14415)) |
||||
* Enable Proton C defaults for SplitKB Kyria ([#14490](https://github.com/qmk/qmk_firmware/pull/14490)) |
||||
* Set USB max power consumption of kint* controllers to 100mA ([#14546](https://github.com/qmk/qmk_firmware/pull/14546)) |
||||
* Remove complex `fn_actions` macros ([#14662](https://github.com/qmk/qmk_firmware/pull/14662)) |
||||
* New Keyboard: TGR Jane CE ([#14713](https://github.com/qmk/qmk_firmware/pull/14713)) |
||||
* Migrate satisfaction75 away from QWIIC_DRIVERS ([#14747](https://github.com/qmk/qmk_firmware/pull/14747)) |
||||
* add Lefty keyboard ([#14898](https://github.com/qmk/qmk_firmware/pull/14898)) |
||||
* overnumpad controller: Add support for turning off solenoid enable in low power. ([#15021](https://github.com/qmk/qmk_firmware/pull/15021)) |
||||
* Reduce compile size for melgeek mach80 ([#15034](https://github.com/qmk/qmk_firmware/pull/15034)) |
||||
* Update updated KPrepublic boards to be prepared for the update ([#15040](https://github.com/qmk/qmk_firmware/pull/15040)) |
||||
* rename kprepublic bm keyboards to have a standardized naming format ([#15047](https://github.com/qmk/qmk_firmware/pull/15047)) |
||||
* matrix/abelx - Update ChibiOS conf files ([#15130](https://github.com/qmk/qmk_firmware/pull/15130)) |
||||
* Disable console on Keebio foldkb and iris rev3 ([#15260](https://github.com/qmk/qmk_firmware/pull/15260)) |
||||
* Disable console on Sofle default keymap ([#15261](https://github.com/qmk/qmk_firmware/pull/15261)) |
||||
* Disable features on SplitKB boards to fit under size ([#15262](https://github.com/qmk/qmk_firmware/pull/15262)) |
||||
* Enable LTO on viktus/sp_mini via keymap ([#15263](https://github.com/qmk/qmk_firmware/pull/15263)) |
||||
|
||||
Keyboard fixes: |
||||
* Fix number of elements in info.json does not match errors ([#14213](https://github.com/qmk/qmk_firmware/pull/14213)) |
||||
* Fix typos from 14248 ([#14261](https://github.com/qmk/qmk_firmware/pull/14261)) |
||||
* Stream cheap via fixes/updates ([#14325](https://github.com/qmk/qmk_firmware/pull/14325)) |
||||
* Map `PRODUCT` define to `keyboard_name` ([#14372](https://github.com/qmk/qmk_firmware/pull/14372)) |
||||
* Fix BT rules for dosa40rgb ([#14497](https://github.com/qmk/qmk_firmware/pull/14497)) |
||||
* Fix typo in mechloving adelais header files ([#14590](https://github.com/qmk/qmk_firmware/pull/14590)) |
||||
* Fix for mechlovin/adelais/standard_led/arm/rev4 ([#14639](https://github.com/qmk/qmk_firmware/pull/14639)) |
||||
* Fix OLED timeout on recent qwiic migrations ([#14775](https://github.com/qmk/qmk_firmware/pull/14775)) |
||||
* Fix OLED timeout on satisfaction75 after migration from QWIIC ([#14780](https://github.com/qmk/qmk_firmware/pull/14780)) |
||||
* Fix Compile issues for lefty ([#14982](https://github.com/qmk/qmk_firmware/pull/14982)) |
||||
* Fix missing return for oled task on Lefty ([#15010](https://github.com/qmk/qmk_firmware/pull/15010)) |
||||
* Fix missing return for oled task on Arabica37 ([#15011](https://github.com/qmk/qmk_firmware/pull/15011)) |
||||
* Fix missing return for oled task in drashna userspace ([#15012](https://github.com/qmk/qmk_firmware/pull/15012)) |
||||
* Fix size issues on pistachio pro via keymap ([#15017](https://github.com/qmk/qmk_firmware/pull/15017)) |
||||
* Fix keycode collision in craftwalk keymap ([#15055](https://github.com/qmk/qmk_firmware/pull/15055)) |
||||
* Fix compilation issues for yanghu Unicorne ([#15068](https://github.com/qmk/qmk_firmware/pull/15068)) |
||||
* Fixup broken build after #15040 ([#15073](https://github.com/qmk/qmk_firmware/pull/15073)) |
||||
* Fix compilation issues for Lime ([#15116](https://github.com/qmk/qmk_firmware/pull/15116)) |
||||
* Fix additional board sizes for RGB Matrix ([#15170](https://github.com/qmk/qmk_firmware/pull/15170)) |
||||
* Fix bandominedoni via keymap compilation ([#15171](https://github.com/qmk/qmk_firmware/pull/15171)) |
||||
* Fix handful of boards compiling too large due to RGB matrix changes ([#15184](https://github.com/qmk/qmk_firmware/pull/15184)) |
||||
* Fix oled_task_user for ffkeebs/puca ([#15185](https://github.com/qmk/qmk_firmware/pull/15185)) |
||||
* More headroom. ([#15301](https://github.com/qmk/qmk_firmware/pull/15301)) |
||||
* More headroom. ([#15302](https://github.com/qmk/qmk_firmware/pull/15302)) |
||||
|
||||
Others: |
||||
* Clean up some code block languages ([#14434](https://github.com/qmk/qmk_firmware/pull/14434)) |
||||
* Clarify "nested" and "rolling" key sequences ([#14655](https://github.com/qmk/qmk_firmware/pull/14655)) |
||||
* CI: Create GitHub Actions unit test workflow ([#15223](https://github.com/qmk/qmk_firmware/pull/15223)) |
||||
* Squeezing space out of AVR ([#15243](https://github.com/qmk/qmk_firmware/pull/15243)) |
||||
|
||||
Bugs: |
||||
* Fix parallel builds w/ LTO on systems where make is not GNU make. ([#13955](https://github.com/qmk/qmk_firmware/pull/13955)) |
||||
* fix automatic directory for qmk lint ([#14215](https://github.com/qmk/qmk_firmware/pull/14215)) |
||||
* RN42 Bluetooth typo fix ([#14421](https://github.com/qmk/qmk_firmware/pull/14421)) |
||||
* fix typo in backlight code from #14439 ([#14442](https://github.com/qmk/qmk_firmware/pull/14442)) |
||||
* fix compilation issues with USB programmable buttons ([#14454](https://github.com/qmk/qmk_firmware/pull/14454)) |
||||
* Fix descriptor for USB Programmable Buttons ([#14455](https://github.com/qmk/qmk_firmware/pull/14455)) |
||||
* Make ChibiOS PAL interactions less STM32 specific - Round 2 ([#14456](https://github.com/qmk/qmk_firmware/pull/14456)) |
||||
* fix logical minimum in Programmable Button rdesc ([#14464](https://github.com/qmk/qmk_firmware/pull/14464)) |
||||
* Fix i2c_readReg16 ([#14730](https://github.com/qmk/qmk_firmware/pull/14730)) |
||||
* Put back eeconfig_update_ functions ([#14751](https://github.com/qmk/qmk_firmware/pull/14751)) |
||||
* Fix misplaced endif in led_matrix_drivers.c ([#14785](https://github.com/qmk/qmk_firmware/pull/14785)) |
||||
* Fix builds for ChibiOS + Cortex-M0[+] ([#14879](https://github.com/qmk/qmk_firmware/pull/14879)) |
||||
* Fix ccache default ([#14906](https://github.com/qmk/qmk_firmware/pull/14906)) |
||||
* Fix issues with Oneshot disabling ([#14934](https://github.com/qmk/qmk_firmware/pull/14934)) |
||||
* Fix develop after recent changes ([#14975](https://github.com/qmk/qmk_firmware/pull/14975)) |
||||
* Fix up issues shown by clang-format of vusb ([#15004](https://github.com/qmk/qmk_firmware/pull/15004)) |
||||
* Fix unterminated ifdef in ISSI 3733 driver ([#15014](https://github.com/qmk/qmk_firmware/pull/15014)) |
||||
* Fix build failures caused by #12947. ([#15019](https://github.com/qmk/qmk_firmware/pull/15019)) |
||||
* Fixup LED matrix. ([#15020](https://github.com/qmk/qmk_firmware/pull/15020)) |
||||
* Revert to old init order for host driver ([#15029](https://github.com/qmk/qmk_firmware/pull/15029)) |
||||
* Fixup #15029 ([#15031](https://github.com/qmk/qmk_firmware/pull/15031)) |
||||
* RISC-V toolchain and picolibc fixes ([#15109](https://github.com/qmk/qmk_firmware/pull/15109)) |
||||
* gcc10 LTO - Only specify adhlns assembler options at link time ([#15115](https://github.com/qmk/qmk_firmware/pull/15115)) |
||||
* Add needed include to pointing_device.c ([#15167](https://github.com/qmk/qmk_firmware/pull/15167)) |
||||
* Fix missing variable for Backlight Breathing ([#15199](https://github.com/qmk/qmk_firmware/pull/15199)) |
||||
* Revert backlight pins on function call ([#15205](https://github.com/qmk/qmk_firmware/pull/15205)) |
||||
* Fix timer include in override_wiring.c ([#15221](https://github.com/qmk/qmk_firmware/pull/15221)) |
||||
* fix broken macro in transport.h ([#15239](https://github.com/qmk/qmk_firmware/pull/15239)) |
||||
* Short term bodge for PRODUCT warning ([#15240](https://github.com/qmk/qmk_firmware/pull/15240)) |
||||
* Remove use of __flash due to LTO issues ([#15268](https://github.com/qmk/qmk_firmware/pull/15268)) |
||||
* Documentation typo fix ([#15298](https://github.com/qmk/qmk_firmware/pull/15298)) |
||||
* [Core] Hotfix for HOLD_ON_OTHER_KEY_PRESS after #11059 ([#15307](https://github.com/qmk/qmk_firmware/pull/15307)) |
||||
* Fix call to pointing_device_handle_buttons ([#15313](https://github.com/qmk/qmk_firmware/pull/15313)) |
||||
* [Develop] Fix ploopy readme typos ([#15316](https://github.com/qmk/qmk_firmware/pull/15316)) |
@ -0,0 +1,74 @@ |
||||
## Programmable Button |
||||
|
||||
Programmable button is a feature that can be used to send keys that have no |
||||
predefined meaning. |
||||
This means they can be processed on the host side by custom software without |
||||
colliding without the operating system trying to interpret these keys. |
||||
|
||||
The keycodes are emitted according to the HID usage |
||||
"Telephony Device Page" (0x0B), "Programmable button usage" (0x07). |
||||
On Linux (> 5.14) they are handled automatically and translated to `KEY_MACRO#` |
||||
keycodes. |
||||
(Up to `KEY_MACRO30`) |
||||
|
||||
### Enabling Programmable Button support |
||||
|
||||
To enable Programmable Button, add the following line to your keymap’s `rules.mk`: |
||||
|
||||
```c |
||||
PROGRAMMABLE_BUTTON_ENABLE = yes |
||||
``` |
||||
|
||||
### Mapping |
||||
|
||||
In your keymap you can use the following keycodes to map key presses to Programmable Buttons: |
||||
|
||||
|Key |Description | |
||||
|------------------------|----------------------| |
||||
|`PROGRAMMABLE_BUTTON_1` |Programmable button 1 | |
||||
|`PROGRAMMABLE_BUTTON_2` |Programmable button 2 | |
||||
|`PROGRAMMABLE_BUTTON_3` |Programmable button 3 | |
||||
|`PROGRAMMABLE_BUTTON_4` |Programmable button 4 | |
||||
|`PROGRAMMABLE_BUTTON_5` |Programmable button 5 | |
||||
|`PROGRAMMABLE_BUTTON_6` |Programmable button 6 | |
||||
|`PROGRAMMABLE_BUTTON_7` |Programmable button 7 | |
||||
|`PROGRAMMABLE_BUTTON_8` |Programmable button 8 | |
||||
|`PROGRAMMABLE_BUTTON_9` |Programmable button 9 | |
||||
|`PROGRAMMABLE_BUTTON_10`|Programmable button 10| |
||||
|`PROGRAMMABLE_BUTTON_11`|Programmable button 11| |
||||
|`PROGRAMMABLE_BUTTON_12`|Programmable button 12| |
||||
|`PROGRAMMABLE_BUTTON_13`|Programmable button 13| |
||||
|`PROGRAMMABLE_BUTTON_14`|Programmable button 14| |
||||
|`PROGRAMMABLE_BUTTON_15`|Programmable button 15| |
||||
|`PROGRAMMABLE_BUTTON_16`|Programmable button 16| |
||||
|`PROGRAMMABLE_BUTTON_17`|Programmable button 17| |
||||
|`PROGRAMMABLE_BUTTON_18`|Programmable button 18| |
||||
|`PROGRAMMABLE_BUTTON_19`|Programmable button 19| |
||||
|`PROGRAMMABLE_BUTTON_20`|Programmable button 20| |
||||
|`PROGRAMMABLE_BUTTON_21`|Programmable button 21| |
||||
|`PROGRAMMABLE_BUTTON_22`|Programmable button 22| |
||||
|`PROGRAMMABLE_BUTTON_23`|Programmable button 23| |
||||
|`PROGRAMMABLE_BUTTON_24`|Programmable button 24| |
||||
|`PROGRAMMABLE_BUTTON_25`|Programmable button 25| |
||||
|`PROGRAMMABLE_BUTTON_26`|Programmable button 26| |
||||
|`PROGRAMMABLE_BUTTON_27`|Programmable button 27| |
||||
|`PROGRAMMABLE_BUTTON_28`|Programmable button 28| |
||||
|`PROGRAMMABLE_BUTTON_29`|Programmable button 29| |
||||
|`PROGRAMMABLE_BUTTON_30`|Programmable button 30| |
||||
|`PROGRAMMABLE_BUTTON_31`|Programmable button 31| |
||||
|`PROGRAMMABLE_BUTTON_32`|Programmable button 32| |
||||
|`PB_1` to `PB_32` |Aliases for keymaps | |
||||
|
||||
### API |
||||
|
||||
You can also use a dedicated API defined in `programmable_button.h` to interact with this feature: |
||||
|
||||
``` |
||||
void programmable_button_clear(void); |
||||
void programmable_button_send(void); |
||||
void programmable_button_on(uint8_t code); |
||||
void programmable_button_off(uint8_t code); |
||||
bool programmable_button_is_on(uint8_t code); |
||||
uint32_t programmable_button_get_report(void); |
||||
void programmable_button_set_report(uint32_t report); |
||||
``` |
@ -0,0 +1,180 @@ |
||||
# Squeezing the most out of AVR |
||||
|
||||
AVR is severely resource-constrained, and as QMK continues to grow, it is approaching a point where support for AVR may need to be moved to legacy status as newer development is unable to fit into those constraints. |
||||
|
||||
However, if you need to reduce the compiled size of your firmware, there are a number of options to do so. |
||||
|
||||
## `rules.mk` Settings |
||||
First and foremost is enabling link time optimization. To do so, add this to your rules.mk: |
||||
```make |
||||
LTO_ENABLE = yes |
||||
``` |
||||
This will cause the final step to take longer, but should get you a smaller compiled size. This also disables Action Functions, and Action Macros, both of which are deprecated. |
||||
This will get you the most savings, in most situations. |
||||
|
||||
From there, disabling extraneous systems will help -- e.g.: |
||||
```make |
||||
CONSOLE_ENABLE = no |
||||
COMMAND_ENABLE = no |
||||
MOUSEKEY_ENABLE = no |
||||
EXTRAKEY_ENABLE = no |
||||
``` |
||||
This disables some of the functionality that you may not need. But note that extrakeys disables stuff like the media keys and system volume control. |
||||
|
||||
If that isn't enough to get your firmware down to size, then there are some additional features that you can disable: |
||||
```make |
||||
SPACE_CADET_ENABLE = no |
||||
GRAVE_ESC_ENABLE = no |
||||
MAGIC_ENABLE = no |
||||
``` |
||||
These features are enabled by default, but may not be needed. Double check to make sure, though. |
||||
Largest in size is "magic" -- the QMK magic keycodes -- which control things like NKRO toggling, GUI and ALT/CTRL swapping, etc. Disabling it will disable those functions. |
||||
|
||||
## `config.h` Settings |
||||
|
||||
If you've done all of that, and you don't want to disable features like RGB, Audio, OLEDs, etc, there are some additional options that you can add to your config.h that can help. |
||||
|
||||
Starting with Lock Key support. If you have an Cherry MX Lock switch (lucky you!), you don't want to do this. But chances are, you don't. In that case, add this to your `config.h`: |
||||
```c |
||||
#undef LOCKING_SUPPORT_ENABLE |
||||
#undef LOCKING_RESYNC_ENABLE |
||||
``` |
||||
Oneshots. If you're not using these, you can disable the feature by adding this to your `config.h`: |
||||
```c |
||||
#define NO_ACTION_ONESHOT |
||||
``` |
||||
The same with tapping keys (mod tap, layer tap, etc) |
||||
```c |
||||
#define NO_ACTION_TAPPING |
||||
``` |
||||
## Audio Settings |
||||
|
||||
If you're using the Audio feature, by default that includes the music mode feature. This tranlates matrix positions into notes. It's neat for sure, but most likely, you're not using it. You can disable it by adding this to your `config.h`: |
||||
```c |
||||
#define NO_MUSIC_MODE |
||||
``` |
||||
And by adding this to your `rules.mk` |
||||
```make |
||||
MUSIC_ENABLE = no |
||||
``` |
||||
|
||||
## Layers |
||||
|
||||
There are also some options for layers, that can reduce the firmware size. All of these settngs are for your `config.h`. |
||||
|
||||
You can limit the number of layers that the firmware uses -- if you're using less than 8 layers in total: |
||||
```c |
||||
#define LAYER_STATE_8BIT |
||||
``` |
||||
or if you require up to 16 layers instead: |
||||
```c |
||||
#define LAYER_STATE_16BIT |
||||
``` |
||||
Or if you're not using layers at all, you can outright remove the functionality altogether: |
||||
```c |
||||
#define NO_ACTION_LAYER |
||||
``` |
||||
|
||||
|
||||
## OLED tweaks |
||||
|
||||
One place you can save a bunch of space here is by not using `sprintf` or `snprintf`. This function call takes up ~1.5kB of firmware space, and can be rewritten. For instance, WPM uses this a lot. |
||||
|
||||
You can convert this: |
||||
```c |
||||
// OLD CODE |
||||
char wpm_str[4] = {0}; |
||||
sprintf(wpm_str, "WPM: %03d", get_current_wpm()); |
||||
oled_write(wpm_str, ' '), false); |
||||
``` |
||||
into this: |
||||
```c |
||||
// NEW CODE |
||||
oled_write_P(PSTR("WPM: "), false); |
||||
oled_write(get_u8_str(get_current_wpm(), ' '), false); |
||||
``` |
||||
which outputs `WPM: 5`. Or this: |
||||
```c |
||||
// NEW CODE |
||||
oled_write_P(PSTR("WPM: "), false); |
||||
oled_write(get_u8_str(get_current_wpm(), '0'), false); |
||||
``` |
||||
which outputs `WPM: 005`. |
||||
|
||||
## RGB Settings |
||||
|
||||
If you're using RGB on your board, both RGB Light (Underglow) and RGB Matrix (per key RGB) now require defines to enable different animations -- some keyboards enable a lot of animations by default, so you can generally gain back some space by disabling specific animations if you don't use them.. For RGB Light you can disable these in your keymap's `config.h`: |
||||
```c |
||||
#undef RGBLIGHT_ANIMATIONS |
||||
#undef RGBLIGHT_EFFECT_BREATHING |
||||
#undef RGBLIGHT_EFFECT_RAINBOW_MOOD |
||||
#undef RGBLIGHT_EFFECT_RAINBOW_SWIRL |
||||
#undef RGBLIGHT_EFFECT_SNAKE |
||||
#undef RGBLIGHT_EFFECT_KNIGHT |
||||
#undef RGBLIGHT_EFFECT_CHRISTMAS |
||||
#undef RGBLIGHT_EFFECT_STATIC_GRADIENT |
||||
#undef RGBLIGHT_EFFECT_RGB_TEST |
||||
#undef RGBLIGHT_EFFECT_ALTERNATING |
||||
#undef RGBLIGHT_EFFECT_TWINKLE |
||||
``` |
||||
|
||||
For RGB Matrix, these need to be explicitly enabled as well. To disable any that were enabled by the keyboard, add one or more of these to your keymap's `config.h`: |
||||
```c |
||||
#undef ENABLE_RGB_MATRIX_ALPHAS_MODS |
||||
#undef ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN |
||||
#undef ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT |
||||
#undef ENABLE_RGB_MATRIX_BREATHING |
||||
#undef ENABLE_RGB_MATRIX_BAND_SAT |
||||
#undef ENABLE_RGB_MATRIX_BAND_VAL |
||||
#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT |
||||
#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL |
||||
#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT |
||||
#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_ALL |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_UP_DOWN |
||||
#undef ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_PINWHEEL |
||||
#undef ENABLE_RGB_MATRIX_CYCLE_SPIRAL |
||||
#undef ENABLE_RGB_MATRIX_DUAL_BEACON |
||||
#undef ENABLE_RGB_MATRIX_RAINBOW_BEACON |
||||
#undef ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS |
||||
#undef ENABLE_RGB_MATRIX_RAINDROPS |
||||
#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS |
||||
#undef ENABLE_RGB_MATRIX_HUE_BREATHING |
||||
#undef ENABLE_RGB_MATRIX_HUE_PENDULUM |
||||
#undef ENABLE_RGB_MATRIX_HUE_WAVE |
||||
#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL |
||||
#undef ENABLE_RGB_MATRIX_PIXEL_RAIN |
||||
|
||||
#undef ENABLE_RGB_MATRIX_TYPING_HEATMAP |
||||
#undef ENABLE_RGB_MATRIX_DIGITAL_RAIN |
||||
|
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS |
||||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS |
||||
#undef ENABLE_RGB_MATRIX_SPLASH |
||||
#undef ENABLE_RGB_MATRIX_MULTISPLASH |
||||
#undef ENABLE_RGB_MATRIX_SOLID_SPLASH |
||||
#undef ENABLE_RGB_MATRIX_SOLID_MULTISPLASH |
||||
``` |
||||
|
||||
# Final Thoughts |
||||
|
||||
If you've done all of this, and your firmware is still too large, then it's time. It's time to consider making the switch to ARM. Unfortunately, right now is the worst possible time for that, due to the silicon shortage, and supply chain issues. Getting an ARM chip is difficult, at best, and significantly overpriced, at worst. |
||||
-- Drashna |
||||
|
||||
That said, there are a number of Pro Micro replacements with ARM controllers: |
||||
* [Proton C](https://qmk.fm/proton-c/) (out of stock) |
||||
* [Bonsai C](https://github.com/customMK/Bonsai-C) (Open Source, DIY/PCBA) |
||||
* [Raspberry Pi 2040](https://www.sparkfun.com/products/18288) (not currently supported, no ETA) |
||||
|
||||
There are other, non-Pro Micro compatible boards out there. The most popular being: |
||||
* [WeAct Blackpill F411](https://www.aliexpress.com/item/1005001456186625.html) (~$6 USD) |
Loading…
Reference in new issue