2015-04-09 18:32:04 +02:00
|
|
|
/*
|
2016-05-24 05:42:21 +02:00
|
|
|
Copyright 2011, 2012, 2013 Jun Wako <wakojun@gmail.com>
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-02-06 01:55:08 +01:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "keyboard.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "keycode_config.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "matrix.h"
|
2023-03-27 21:08:17 +02:00
|
|
|
#include "keymap_introspection.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "host.h"
|
|
|
|
#include "led.h"
|
|
|
|
#include "keycode.h"
|
|
|
|
#include "timer.h"
|
2020-12-01 19:04:42 +01:00
|
|
|
#include "sync_timer.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "print.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "sendchar.h"
|
2016-05-24 05:42:21 +02:00
|
|
|
#include "eeconfig.h"
|
2016-07-07 11:46:10 +02:00
|
|
|
#include "action_layer.h"
|
2024-01-28 23:51:58 +01:00
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
|
|
|
# include "bootmagic.h"
|
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
# include "audio.h"
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
|
|
|
|
# include "process_music.h"
|
|
|
|
#endif
|
2019-10-17 18:48:58 +02:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
# include "backlight.h"
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "mousekey.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "ps2_mouse.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
2016-06-13 00:01:55 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "rgblight.h"
|
2016-06-13 00:01:55 +02:00
|
|
|
#endif
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
# include "led_matrix.h"
|
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
# include "rgb_matrix.h"
|
|
|
|
#endif
|
2020-05-02 23:44:36 +02:00
|
|
|
#ifdef ENCODER_ENABLE
|
|
|
|
# include "encoder.h"
|
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
# include "haptic.h"
|
|
|
|
#endif
|
|
|
|
#ifdef AUTO_SHIFT_ENABLE
|
|
|
|
# include "process_auto_shift.h"
|
|
|
|
#endif
|
|
|
|
#ifdef COMBO_ENABLE
|
|
|
|
# include "process_combo.h"
|
|
|
|
#endif
|
|
|
|
#ifdef TAP_DANCE_ENABLE
|
|
|
|
# include "process_tap_dance.h"
|
|
|
|
#endif
|
2017-07-27 06:51:41 +02:00
|
|
|
#ifdef STENO_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "process_steno.h"
|
2017-07-27 06:51:41 +02:00
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef KEY_OVERRIDE_ENABLE
|
|
|
|
# include "process_key_override.h"
|
|
|
|
#endif
|
|
|
|
#ifdef SECURE_ENABLE
|
|
|
|
# include "secure.h"
|
|
|
|
#endif
|
2017-10-06 19:13:08 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "pointing_device.h"
|
2017-10-06 19:13:08 +02:00
|
|
|
#endif
|
2018-02-08 21:07:46 +01:00
|
|
|
#ifdef MIDI_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "process_midi.h"
|
2018-02-08 21:07:46 +01:00
|
|
|
#endif
|
2020-07-25 14:01:15 +02:00
|
|
|
#ifdef JOYSTICK_ENABLE
|
2023-07-16 15:42:56 +02:00
|
|
|
# include "joystick.h"
|
2020-07-25 14:01:15 +02:00
|
|
|
#endif
|
2018-07-15 19:31:45 +02:00
|
|
|
#ifdef HD44780_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "hd44780.h"
|
2018-07-15 19:31:45 +02:00
|
|
|
#endif
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "oled_driver.h"
|
2019-05-07 00:06:43 +02:00
|
|
|
#endif
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
# include "st7565.h"
|
|
|
|
#endif
|
2020-01-03 21:52:00 +01:00
|
|
|
#ifdef VIA_ENABLE
|
|
|
|
# include "via.h"
|
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
|
|
|
# include "dip_switch.h"
|
|
|
|
#endif
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#ifdef EEPROM_DRIVER
|
|
|
|
# include "eeprom_driver.h"
|
|
|
|
#endif
|
2021-07-01 20:33:37 +02:00
|
|
|
#ifdef QMK_SETTINGS
|
|
|
|
# include "qmk_settings.h"
|
|
|
|
#endif
|
2021-07-03 19:30:43 +02:00
|
|
|
#ifdef VIAL_ENABLE
|
|
|
|
# include "vial.h"
|
|
|
|
#endif
|
2021-06-18 01:09:43 +02:00
|
|
|
#if defined(CRC_ENABLE)
|
|
|
|
# include "crc.h"
|
|
|
|
#endif
|
2021-10-28 23:31:59 +02:00
|
|
|
#ifdef VIRTSER_ENABLE
|
|
|
|
# include "virtser.h"
|
|
|
|
#endif
|
2021-10-29 00:43:57 +02:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
# include "sleep_led.h"
|
|
|
|
#endif
|
2022-01-23 03:41:57 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
# include "split_util.h"
|
|
|
|
#endif
|
|
|
|
#ifdef BLUETOOTH_ENABLE
|
2022-09-29 19:38:09 +02:00
|
|
|
# include "bluetooth.h"
|
2022-01-23 03:41:57 +01:00
|
|
|
#endif
|
2022-05-14 08:00:32 +02:00
|
|
|
#ifdef CAPS_WORD_ENABLE
|
|
|
|
# include "caps_word.h"
|
|
|
|
#endif
|
2023-02-12 17:19:02 +01:00
|
|
|
#ifdef LEADER_ENABLE
|
|
|
|
# include "leader.h"
|
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef UNICODE_COMMON_ENABLE
|
|
|
|
# include "unicode.h"
|
|
|
|
#endif
|
|
|
|
#ifdef WPM_ENABLE
|
|
|
|
# include "wpm.h"
|
|
|
|
#endif
|
2024-02-16 15:19:02 +01:00
|
|
|
#ifdef OS_DETECTION_ENABLE
|
|
|
|
# include "os_detection.h"
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2021-01-21 12:24:07 +01:00
|
|
|
static uint32_t last_input_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_input_activity_time(void) {
|
|
|
|
return last_input_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_input_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_input_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-21 12:24:07 +01:00
|
|
|
|
2021-01-17 19:01:38 +01:00
|
|
|
static uint32_t last_matrix_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_matrix_activity_time(void) {
|
|
|
|
return last_matrix_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_matrix_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_matrix_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
|
|
|
void last_matrix_activity_trigger(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
last_matrix_modification_time = last_input_modification_time = sync_timer_read32();
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-21 12:24:07 +01:00
|
|
|
|
|
|
|
static uint32_t last_encoder_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_encoder_activity_time(void) {
|
|
|
|
return last_encoder_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_encoder_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_encoder_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
|
|
|
void last_encoder_activity_trigger(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
last_encoder_modification_time = last_input_modification_time = sync_timer_read32();
|
|
|
|
}
|
|
|
|
|
2023-03-31 03:27:39 +02:00
|
|
|
static uint32_t last_pointing_device_modification_time = 0;
|
|
|
|
uint32_t last_pointing_device_activity_time(void) {
|
|
|
|
return last_pointing_device_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_pointing_device_activity_elapsed(void) {
|
|
|
|
return sync_timer_elapsed32(last_pointing_device_modification_time);
|
|
|
|
}
|
|
|
|
void last_pointing_device_activity_trigger(void) {
|
|
|
|
last_pointing_device_modification_time = last_input_modification_time = sync_timer_read32();
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_activity_timestamps(uint32_t matrix_timestamp, uint32_t encoder_timestamp, uint32_t pointing_device_timestamp) {
|
|
|
|
last_matrix_modification_time = matrix_timestamp;
|
|
|
|
last_encoder_modification_time = encoder_timestamp;
|
|
|
|
last_pointing_device_modification_time = pointing_device_timestamp;
|
|
|
|
last_input_modification_time = MAX(matrix_timestamp, MAX(encoder_timestamp, pointing_device_timestamp));
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-17 19:01:38 +01:00
|
|
|
|
2019-10-15 14:32:52 +02:00
|
|
|
// Only enable this if console is enabled to print to
|
2021-01-27 18:34:50 +01:00
|
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE)
|
2021-02-05 14:27:24 +01:00
|
|
|
static uint32_t matrix_timer = 0;
|
|
|
|
static uint32_t matrix_scan_count = 0;
|
2021-01-27 18:34:50 +01:00
|
|
|
static uint32_t last_matrix_scan_count = 0;
|
2019-10-15 14:32:52 +02:00
|
|
|
|
|
|
|
void matrix_scan_perf_task(void) {
|
|
|
|
matrix_scan_count++;
|
|
|
|
|
|
|
|
uint32_t timer_now = timer_read32();
|
2022-04-09 20:49:20 +02:00
|
|
|
if (TIMER_DIFF_32(timer_now, matrix_timer) >= 1000) {
|
2021-01-27 18:34:50 +01:00
|
|
|
# if defined(CONSOLE_ENABLE)
|
2021-02-03 02:30:33 +01:00
|
|
|
dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
|
2021-01-27 18:34:50 +01:00
|
|
|
# endif
|
|
|
|
last_matrix_scan_count = matrix_scan_count;
|
2021-02-05 14:27:24 +01:00
|
|
|
matrix_timer = timer_now;
|
|
|
|
matrix_scan_count = 0;
|
2019-10-15 14:32:52 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-27 18:34:50 +01:00
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t get_matrix_scan_rate(void) {
|
|
|
|
return last_matrix_scan_count;
|
|
|
|
}
|
2019-10-15 14:32:52 +02:00
|
|
|
#else
|
|
|
|
# define matrix_scan_perf_task()
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MATRIX_HAS_GHOST
|
2022-09-29 19:25:55 +02:00
|
|
|
static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata) {
|
2017-05-14 03:24:43 +02:00
|
|
|
matrix_row_t out = 0;
|
2017-05-15 00:36:44 +02:00
|
|
|
for (uint8_t col = 0; col < MATRIX_COLS; col++) {
|
2019-08-30 20:19:03 +02:00
|
|
|
// read each key in the row data and check if the keymap defines it as a real key
|
2023-04-30 03:56:58 +02:00
|
|
|
if (keycode_at_keymap_location(0, row, col) && (rowdata & (((matrix_row_t)1) << col))) {
|
2019-08-30 20:19:03 +02:00
|
|
|
// this creates new row data, if a key is defined in the keymap, it will be set here
|
2023-04-30 03:56:58 +02:00
|
|
|
out |= ((matrix_row_t)1) << col;
|
2017-05-14 03:24:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static inline bool popcount_more_than_one(matrix_row_t rowdata) {
|
2022-02-12 19:29:31 +01:00
|
|
|
rowdata &= rowdata - 1; // if there are less than two bits (keys) set, rowdata will become zero
|
2017-05-15 00:36:44 +02:00
|
|
|
return rowdata;
|
2017-05-13 22:19:28 +02:00
|
|
|
}
|
2017-05-14 04:07:05 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) {
|
2017-05-13 17:51:20 +02:00
|
|
|
/* No ghost exists when less than 2 keys are down on the row.
|
|
|
|
If there are "active" blanks in the matrix, the key can't be pressed by the user,
|
|
|
|
there is no doubt as to which keys are really being pressed.
|
|
|
|
The ghosts will be ignored, they are KC_NO. */
|
2017-05-15 00:36:44 +02:00
|
|
|
rowdata = get_real_keys(row, rowdata);
|
2019-08-30 20:19:03 +02:00
|
|
|
if ((popcount_more_than_one(rowdata)) == 0) {
|
2017-05-15 00:36:44 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/* Ghost occurs when the row shares a column line with other row,
|
|
|
|
and two columns are read on each row. Blanks in the matrix don't matter,
|
|
|
|
so they are filtered out.
|
|
|
|
If there are two or more real keys pressed and they match columns with
|
|
|
|
at least two of another row's real keys, the row will be ignored. Keep in mind,
|
|
|
|
we are checking one row at a time, not all of them at once.
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
|
|
|
|
if (i != row && popcount_more_than_one(get_real_keys(i, matrix_get_row(i)) & rowdata)) {
|
2016-07-04 17:45:58 +02:00
|
|
|
return true;
|
2017-05-13 17:51:20 +02:00
|
|
|
}
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-14 01:57:23 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief matrix_setup
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
__attribute__((weak)) void matrix_setup(void) {}
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2019-02-15 05:18:54 +01:00
|
|
|
/** \brief keyboard_pre_init_user
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
__attribute__((weak)) void keyboard_pre_init_user(void) {}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_pre_init_kb
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) void keyboard_pre_init_kb(void) {
|
|
|
|
keyboard_pre_init_user();
|
|
|
|
}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_post_init_user
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
__attribute__((weak)) void keyboard_post_init_user(void) {}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_post_init_kb
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) void keyboard_post_init_kb(void) {
|
|
|
|
keyboard_post_init_user();
|
|
|
|
}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
2023-02-12 17:38:36 +01:00
|
|
|
/** \brief matrix_can_read
|
|
|
|
*
|
|
|
|
* Allows overriding when matrix scanning operations should be executed.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) bool matrix_can_read(void) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief keyboard_setup
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2016-05-24 05:42:21 +02:00
|
|
|
void keyboard_setup(void) {
|
2021-02-14 02:44:22 +01:00
|
|
|
print_set_sendchar(sendchar);
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#ifdef EEPROM_DRIVER
|
|
|
|
eeprom_driver_init();
|
2021-07-01 20:33:37 +02:00
|
|
|
#endif
|
2021-07-03 19:30:43 +02:00
|
|
|
#ifdef VIAL_ENABLE
|
|
|
|
vial_init();
|
|
|
|
#endif
|
2021-07-01 20:33:37 +02:00
|
|
|
#ifdef QMK_SETTINGS
|
|
|
|
qmk_settings_init();
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#endif
|
2015-05-17 12:34:34 +02:00
|
|
|
matrix_setup();
|
2019-02-15 05:18:54 +01:00
|
|
|
keyboard_pre_init_kb();
|
2015-05-17 12:34:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-18 01:18:58 +02:00
|
|
|
#ifndef SPLIT_KEYBOARD
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief is_keyboard_master
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool is_keyboard_master(void) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-09-30 10:58:09 +02:00
|
|
|
|
2020-11-19 01:50:32 +01:00
|
|
|
/** \brief is_keyboard_left
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool is_keyboard_left(void) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-11-19 01:50:32 +01:00
|
|
|
|
2021-08-18 01:18:58 +02:00
|
|
|
#endif
|
|
|
|
|
2020-05-03 01:39:37 +02:00
|
|
|
/** \brief should_process_keypress
|
|
|
|
*
|
|
|
|
* Override this function if you have a condition where keypresses processing should change:
|
|
|
|
* - splits where the slave side needs to process for rgb/oled functionality
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool should_process_keypress(void) {
|
|
|
|
return is_keyboard_master();
|
|
|
|
}
|
2020-05-03 01:39:37 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
/** \brief housekeeping_task_kb
|
|
|
|
*
|
|
|
|
* Override this function if you have a need to execute code for every keyboard main loop iteration.
|
|
|
|
* This is specific to keyboard-level functionality.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) void housekeeping_task_kb(void) {}
|
|
|
|
|
|
|
|
/** \brief housekeeping_task_user
|
|
|
|
*
|
|
|
|
* Override this function if you have a need to execute code for every keyboard main loop iteration.
|
|
|
|
* This is specific to user/keymap-level functionality.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) void housekeeping_task_user(void) {}
|
|
|
|
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
/** \brief housekeeping_task
|
|
|
|
*
|
|
|
|
* Invokes hooks for executing code after QMK is done after each loop iteration.
|
|
|
|
*/
|
|
|
|
void housekeeping_task(void) {
|
|
|
|
housekeeping_task_kb();
|
|
|
|
housekeeping_task_user();
|
|
|
|
}
|
|
|
|
|
2024-01-28 23:51:58 +01:00
|
|
|
/** \brief quantum_init
|
2022-01-23 03:41:57 +01:00
|
|
|
*
|
2024-01-28 23:51:58 +01:00
|
|
|
* Init global state
|
2022-01-23 03:41:57 +01:00
|
|
|
*/
|
|
|
|
void quantum_init(void) {
|
2024-01-28 23:51:58 +01:00
|
|
|
/* check signature */
|
|
|
|
if (!eeconfig_is_enabled()) {
|
|
|
|
eeconfig_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* init globals */
|
|
|
|
debug_config.raw = eeconfig_read_debug();
|
|
|
|
keymap_config.raw = eeconfig_read_keymap();
|
|
|
|
|
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
|
|
|
bootmagic();
|
2022-01-23 03:41:57 +01:00
|
|
|
#endif
|
2024-01-28 23:51:58 +01:00
|
|
|
|
|
|
|
/* read here just incase bootmagic process changed its value */
|
|
|
|
layer_state_t default_layer = (layer_state_t)eeconfig_read_default_layer();
|
|
|
|
default_layer_set(default_layer);
|
|
|
|
|
|
|
|
/* Also initialize layer state to trigger callback functions for layer_state */
|
|
|
|
layer_state_set_kb((layer_state_t)layer_state);
|
2022-01-23 03:41:57 +01:00
|
|
|
}
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief keyboard_init
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2016-05-24 05:42:21 +02:00
|
|
|
void keyboard_init(void) {
|
2015-04-09 18:32:04 +02:00
|
|
|
timer_init();
|
2020-12-01 19:04:42 +01:00
|
|
|
sync_timer_init();
|
2020-01-03 21:52:00 +01:00
|
|
|
#ifdef VIA_ENABLE
|
|
|
|
via_init();
|
2022-01-23 03:41:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
split_pre_init();
|
2022-11-27 00:07:35 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENCODER_ENABLE
|
|
|
|
encoder_init();
|
2021-08-21 06:02:53 +02:00
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
matrix_init();
|
2022-01-23 03:41:57 +01:00
|
|
|
quantum_init();
|
2024-01-28 23:51:58 +01:00
|
|
|
led_init_ports();
|
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init_ports();
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
audio_init();
|
|
|
|
#endif
|
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
led_matrix_init();
|
|
|
|
#endif
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
rgb_matrix_init();
|
|
|
|
#endif
|
|
|
|
#if defined(UNICODE_COMMON_ENABLE)
|
|
|
|
unicode_input_mode_init();
|
|
|
|
#endif
|
2021-06-18 01:09:43 +02:00
|
|
|
#if defined(CRC_ENABLE)
|
|
|
|
crc_init();
|
2020-01-03 21:52:00 +01:00
|
|
|
#endif
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-05-07 00:06:43 +02:00
|
|
|
oled_init(OLED_ROTATION_0);
|
|
|
|
#endif
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
st7565_init(DISPLAY_ROTATION_0);
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_init();
|
|
|
|
#endif
|
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init();
|
|
|
|
#endif
|
2016-06-13 00:01:55 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
|
|
rgblight_init();
|
|
|
|
#endif
|
2022-06-23 20:43:24 +02:00
|
|
|
#ifdef STENO_ENABLE_ALL
|
2017-07-27 06:51:41 +02:00
|
|
|
steno_init();
|
|
|
|
#endif
|
2016-03-29 02:45:20 +02:00
|
|
|
#if defined(NKRO_ENABLE) && defined(FORCE_NKRO)
|
2016-09-07 06:19:01 +02:00
|
|
|
keymap_config.nkro = 1;
|
2019-12-11 20:39:30 +01:00
|
|
|
eeconfig_update_keymap(keymap_config.raw);
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
|
|
|
dip_switch_init();
|
|
|
|
#endif
|
2024-02-16 15:14:46 +01:00
|
|
|
#ifdef JOYSTICK_ENABLE
|
|
|
|
joystick_init();
|
|
|
|
#endif
|
2021-10-24 21:39:41 +02:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
sleep_led_init();
|
|
|
|
#endif
|
|
|
|
#ifdef VIRTSER_ENABLE
|
|
|
|
virtser_init();
|
|
|
|
#endif
|
2022-01-23 03:41:57 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
split_post_init();
|
|
|
|
#endif
|
2022-07-21 19:16:44 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
// init after split init
|
|
|
|
pointing_device_init();
|
|
|
|
#endif
|
2022-09-29 19:38:09 +02:00
|
|
|
#ifdef BLUETOOTH_ENABLE
|
|
|
|
bluetooth_init();
|
2022-09-07 20:59:24 +02:00
|
|
|
#endif
|
2023-09-25 04:23:31 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
haptic_init();
|
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE) && defined(CONSOLE_ENABLE)
|
|
|
|
debug_enable = true;
|
|
|
|
#endif
|
|
|
|
|
2019-02-15 05:18:54 +01:00
|
|
|
keyboard_post_init_kb(); /* Always keep this last */
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
|
2021-02-16 01:30:33 +01:00
|
|
|
/** \brief key_event_task
|
|
|
|
*
|
|
|
|
* This function is responsible for calling into other systems when they need to respond to electrical switch press events.
|
|
|
|
* This is differnet than keycode events as no layer processing, or filtering occurs.
|
|
|
|
*/
|
|
|
|
void switch_events(uint8_t row, uint8_t col, bool pressed) {
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#if defined(LED_MATRIX_ENABLE)
|
2024-04-05 16:43:52 +02:00
|
|
|
led_matrix_handle_key_event(row, col, pressed);
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#if defined(RGB_MATRIX_ENABLE)
|
2024-04-05 16:43:52 +02:00
|
|
|
rgb_matrix_handle_key_event(row, col, pressed);
|
2021-02-16 01:30:33 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
/**
|
|
|
|
* @brief Generates a tick event at a maximum rate of 1KHz that drives the
|
|
|
|
* internal QMK state machine.
|
|
|
|
*/
|
|
|
|
static inline void generate_tick_event(void) {
|
|
|
|
static uint16_t last_tick = 0;
|
|
|
|
const uint16_t now = timer_read();
|
|
|
|
if (TIMER_DIFF_16(now, last_tick) != 0) {
|
2023-04-03 10:33:45 +02:00
|
|
|
action_exec(MAKE_TICK_EVENT);
|
2022-08-06 12:51:13 +02:00
|
|
|
last_tick = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This task scans the keyboards matrix and processes any key presses
|
|
|
|
* that occur.
|
2018-03-22 07:50:38 +01:00
|
|
|
*
|
2022-08-06 12:51:13 +02:00
|
|
|
* @return true Matrix did change
|
|
|
|
* @return false Matrix didn't change
|
2016-07-04 17:45:58 +02:00
|
|
|
*/
|
2022-08-06 12:51:13 +02:00
|
|
|
static bool matrix_task(void) {
|
2023-02-12 17:38:36 +01:00
|
|
|
if (!matrix_can_read()) {
|
|
|
|
generate_tick_event();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
static matrix_row_t matrix_previous[MATRIX_ROWS];
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
matrix_scan();
|
|
|
|
bool matrix_changed = false;
|
|
|
|
for (uint8_t row = 0; row < MATRIX_ROWS && !matrix_changed; row++) {
|
|
|
|
matrix_changed |= matrix_previous[row] ^ matrix_get_row(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix_scan_perf_task();
|
|
|
|
|
|
|
|
// Short-circuit the complete matrix processing if it is not necessary
|
|
|
|
if (!matrix_changed) {
|
|
|
|
generate_tick_event();
|
|
|
|
return matrix_changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug_config.matrix) {
|
|
|
|
matrix_print();
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool process_keypress = should_process_keypress();
|
|
|
|
|
|
|
|
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
|
|
|
|
const matrix_row_t current_row = matrix_get_row(row);
|
|
|
|
const matrix_row_t row_changes = current_row ^ matrix_previous[row];
|
|
|
|
|
|
|
|
if (!row_changes || has_ghost_in_row(row, current_row)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix_row_t col_mask = 1;
|
|
|
|
for (uint8_t col = 0; col < MATRIX_COLS; col++, col_mask <<= 1) {
|
|
|
|
if (row_changes & col_mask) {
|
|
|
|
const bool key_pressed = current_row & col_mask;
|
|
|
|
|
|
|
|
if (process_keypress) {
|
|
|
|
action_exec(MAKE_KEYEVENT(row, col, key_pressed));
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
2022-08-06 12:51:13 +02:00
|
|
|
|
|
|
|
switch_events(row, col, key_pressed);
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
matrix_previous[row] = current_row;
|
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-01-09 04:50:44 +01:00
|
|
|
return matrix_changed;
|
|
|
|
}
|
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
/** \brief Tasks previously located in matrix_scan_quantum
|
|
|
|
*
|
|
|
|
* TODO: rationalise against keyboard_task and current split role
|
|
|
|
*/
|
|
|
|
void quantum_task(void) {
|
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
// some tasks should only run on master
|
|
|
|
if (!is_keyboard_master()) return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIO_ENABLE) && defined(AUDIO_INIT_DELAY)
|
|
|
|
// There are some tasks that need to be run a little bit
|
|
|
|
// after keyboard startup, or else they will not work correctly
|
|
|
|
// because of interaction with the USB device state, which
|
|
|
|
// may still be in flux...
|
|
|
|
//
|
|
|
|
// At the moment the only feature that needs this is the
|
|
|
|
// startup song.
|
|
|
|
static bool delayed_tasks_run = false;
|
|
|
|
static uint16_t delayed_task_timer = 0;
|
|
|
|
if (!delayed_tasks_run) {
|
|
|
|
if (!delayed_task_timer) {
|
|
|
|
delayed_task_timer = timer_read();
|
|
|
|
} else if (timer_elapsed(delayed_task_timer) > 300) {
|
|
|
|
audio_startup();
|
|
|
|
delayed_tasks_run = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE)
|
|
|
|
music_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef KEY_OVERRIDE_ENABLE
|
|
|
|
key_override_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SEQUENCER_ENABLE
|
|
|
|
sequencer_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TAP_DANCE_ENABLE
|
|
|
|
tap_dance_task();
|
2019-10-15 14:32:52 +02:00
|
|
|
#endif
|
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
#ifdef COMBO_ENABLE
|
|
|
|
combo_task();
|
|
|
|
#endif
|
|
|
|
|
2023-02-12 17:19:02 +01:00
|
|
|
#ifdef LEADER_ENABLE
|
|
|
|
leader_task();
|
|
|
|
#endif
|
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
#ifdef WPM_ENABLE
|
|
|
|
decay_wpm();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
2023-12-08 16:57:34 +01:00
|
|
|
dip_switch_task();
|
2022-01-19 18:38:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef AUTO_SHIFT_ENABLE
|
|
|
|
autoshift_matrix_scan();
|
|
|
|
#endif
|
2022-04-16 20:13:05 +02:00
|
|
|
|
2022-05-14 08:00:32 +02:00
|
|
|
#ifdef CAPS_WORD_ENABLE
|
|
|
|
caps_word_task();
|
|
|
|
#endif
|
|
|
|
|
2022-04-16 20:13:05 +02:00
|
|
|
#ifdef SECURE_ENABLE
|
|
|
|
secure_task();
|
|
|
|
#endif
|
2022-01-19 18:38:48 +01:00
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
/** \brief Main task that is repeatedly called as fast as possible. */
|
2022-01-09 04:50:44 +01:00
|
|
|
void keyboard_task(void) {
|
2023-03-31 03:27:39 +02:00
|
|
|
__attribute__((unused)) bool activity_has_occurred = false;
|
|
|
|
if (matrix_task()) {
|
2022-08-06 12:51:13 +02:00
|
|
|
last_matrix_activity_trigger();
|
2023-03-31 03:27:39 +02:00
|
|
|
activity_has_occurred = true;
|
2022-08-06 12:51:13 +02:00
|
|
|
}
|
2019-10-15 14:32:52 +02:00
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
quantum_task();
|
|
|
|
|
2022-10-06 11:52:42 +02:00
|
|
|
#if defined(SPLIT_WATCHDOG_ENABLE)
|
|
|
|
split_watchdog_task();
|
|
|
|
#endif
|
|
|
|
|
Refactor rgblight_reconfig.h (#7773)
* Moved contents of rgblight_reconfig.h to rgblight_post_config.h.
In #3582, rgblight_reconfig.h had to be newly created. Now, the build system of qmk_firmware has a post_cofig feature, so that what was done in rgblight_reconfig.h can now be realized in rgblight_post_config.h.
**This commit does not change the build result.**
Testing script
```shell
# build on master
git checkout master
echo master > /tmp/master_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# build on refactor_rgblight_reconfig.h
git checkout refactor_rgblight_reconfig.h
echo refactor_rgblight_reconfig.h > /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
diff -u /tmp/master_md5.txt /tmp/branch_md5.txt
```
Test result:
```
--- /tmp/master_md5.txt 2020-01-03 15:42:22.000000000 +0900
+++ /tmp/branch_md5.txt 2020-01-03 15:42:42.000000000 +0900
@@ -1,4 +1,4 @@
-master
+refactor_rgblight_reconfig.h
MD5 (helix_rev2_default.hex) = f360032edd522448366d471d8f4f8181
MD5 (helix_rev2_back_default.hex) = 0c663acc6cccc44476b3b969ad22a48f
MD5 (helix_rev2_back_default.hex) = e66b1195ff6d38e6e22c975b8ae42fd3
```
* Expressions that are too long are difficult to read, so wrap them.
* Edit the expression again
* remove `defined(RGBLIGHT_ANIMATIONS)` in `tmk_core/common/*/suspend.c`, `tmk_core/protocol/*/main.c`
move contents of rgblight_reconfig.h to rgblight.h.
The following changes were made to rgblight.h.
```diff
+#ifdef RGBLIGHT_USE_TIMER
void rgblight_task(void);
void rgblight_timer_init(void);
void rgblight_timer_enable(void);
void rgblight_timer_disable(void);
void rgblight_timer_toggle(void);
+#else
+#define rgblight_task()
+#define rgblight_timer_init()
+#define rgblight_timer_enable()
+#define rgblight_timer_disable()
+#define rgblight_timer_toggle()
+#endif
```
The following changes were made to tmk_core/common/avr/suspend.c, tmk_core/common/chibios/suspend.c, tmk_core/protocol/chibios/main.c, tmk_core/protocol/lufa/lufa.c, tmk_core/protocol/vusb/main.c.
```diff
-# ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_enable();
-# endif
```
```diff
-#if defined(RGBLIGHT_ANIMATIONS) && defined(RGBLIGHT_ENABLE)
+#if defined(RGBLIGHT_ENABLE)
rgblight_task();
#endif
```
* remove 'defined(RGBLIGHT_ANIMATIONS)' in tmk_core/common/keyboard.c
Co-authored-by: Joel Challis <git@zvecr.com>
2020-03-10 09:46:03 +01:00
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
2020-01-19 01:59:09 +01:00
|
|
|
rgblight_task();
|
|
|
|
#endif
|
|
|
|
|
2021 May 29 Breaking Changes Update (#13034)
* Add Per Key functionality for AutoShift (#11536)
* LED Matrix: Reactive effect buffers & advanced indicators (#12588)
* [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626)
* [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
* LED Matrix: Split (#12633)
* [CI] Format code according to conventions (#12650)
* feat: infinite timeout for leader key (#6580)
* feat: implement leader_no_timeout logic
* docs(leader_key): infinite leader timeout docs
* Format code according to conventions (#12680)
* Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403)
* Fix default ADC_RESOLUTION for ADCv3 (and ADCv4)
Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers
(that macro should not have been there, because ADCv3 has CFGR instead of
CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS
if it is defined (that name is used for ADCv3 and ADCv4).
* Update ADC docs to match the actually used resolution
ADC driver for ChibiOS actually uses the 10-bit resolution by default
(probably to match AVR); fix the documentation accordingly. Also add
both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names
differ according to the ADC implementation in the particular MCU).
* Fix pinToMux() for B12 and B13 on STM32F3xx
Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and
B13 pins were wrong.
* Add support for all possible analog pins on STM32F1xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx
(they are the same at least for STM32F103x8 and larger F103 devices, and
also F102, F105, F107 families). Actually tested on STM32F103C8T6
(therefore pins C0...C5 were not tested).
Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages,
cannot be supported at the moment, because those pins are connected only
to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1.
* Add support for all possible analog pins on STM32F4xx
Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally
F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are
apparently the same for all F4xx devices, except some smaller devices may
not have ADC3.
Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using
various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested.
Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices
which don't have ADC3 also don't have the GPIOF port, therefore the code
which refers to Fx pins does not compile.
* Fix STM32F3xx ADC mux table in documentation
The ADC driver documentation had some errors in the mux table for STM32F3xx.
Fix this table to match the datasheet and the actual code (mux settings for
B12 and B13 were also tested on a real STM32F303CCT6 chip).
* Add STM32F1xx ADC pins to the documentation
* Add STM32F4xx ADC pins to the documentation
* Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
* eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
* Add support for MCU = STM32F446 (#12619)
* Add support for MCU = STM32F446
* Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h
* Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64
* stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled.
* Format code according to conventions (#12682)
* Format code according to conventions (#12687)
* Add STM32L433 and L443 support (#12063)
* initial L433 commit
* change to XC
* fix L433
* disable all peripherals
* update system and peripheral clocks
* 433 change
* use its own board files
* revert its own board files
* l433 specific change
* fix stm32l432xx define
* remove duplicate #define
* fix bootloader jump
* move to L443xx and add i2c2, spi2, usart3 to mcuconf.h
* move to L443
* move to L443
* fix sdmmc in mcuconf.h
* include STM32L443
* add L443
* Include L443 in compatible microcontrollers
* Include L443 in compatible microcontrollers
* Update config bootloader jump description
* Update ChibiOS define reasoning
* Update quantum/mcu_selection.mk
* fix git conflict
* Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613)
* Fix bad PR merge for #6580. (#12721)
* Change RGB/LED Matrix to use a simple define for USB suspend (#12697)
* [CI] Format code according to conventions (#12731)
* Fixing transport's led/rgb matrix suspend state logic (#12770)
* [CI] Format code according to conventions (#12772)
* Fix comment parsing (#12750)
* Added OLED fade out support (#12086)
* fix some references to bin/qmk that slipped in (#12832)
* Resolve a number of warnings in `qmk generate-api` (#12833)
* New command: qmk console (#12828)
* stash poc
* stash
* tidy up implementation
* Tidy up slightly for review
* Tidy up slightly for review
* Bodge environment to make tests pass
* Refactor away from asyncio due to windows issues
* Filter devices
* align vid/pid printing
* Add hidapi to the installers
* start preparing for multiple hid_listeners
* udev rules for hid_listen
* refactor to move closer to end state
* very basic implementation of the threaded model
* refactor how vid/pid/index are supplied and parsed
* windows improvements
* read the report directly when usage page isn't available
* add per-device colors, the choice to show names or numbers, and refactor
* add timestamps
* Add support for showing bootloaders
* tweak the color for bootloaders
* Align bootloader disconnect with connect color
* add support for showing all bootloaders
* fix the pyusb check
* tweaks
* fix exception
* hide a stack trace behind -v
* add --no-bootloaders option
* add documentation for qmk console
* Apply suggestions from code review
* pyformat
* clean up and flesh out KNOWN_BOOTLOADERS
* Remove pointless SERIAL_LINK_ENABLE rules (#12846)
* Make Swap Hands use PROGMEM (#12284)
This converts the array that the Swap Hands feature uses to use PROGMEM,
and to read from that array, as such. Since this array never changes at
runtime, there is no reason to keep it in memory. Especially for AVR
boards, as memory is a precious resource.
* Fix another bin/qmk reference (#12856)
* [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419)
* Fixup build errors on `develop` branch. (#12723)
* LED Matrix: Effects! (#12651)
* Fix syntax error when compiling for ARM (#12866)
* Remove KEYMAP and LAYOUT_kc (#12160)
* alias KEYMAP to LAYOUT
* remove KEYMAP and LAYOUT_kc
* Add setup, clone, and env to the list of commands we allow even with broken modules (#12868)
* Rename `point_t` -> `led_point_t` (#12864)
* [Keyboard] updated a vendor name / fixed minor keymap issues (#12881)
* Add missing LED Matrix suspend code to suspend.c (#12878)
* LED Matrix: Documentation (#12685)
* Deprecate `send_unicode_hex_string()` (#12602)
* Fix spelling mistake regarding LED Matrix in split_common. (#12888)
* [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895)
* Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
* Add function to allow repeated blinking of one layer (#12237)
* Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time
* Update doc
* Rework rgblight blinking according to requested change
* optimize storage
* Fixup housekeeping from being invoked twice per loop. (#12933)
* matrix: wait for row signal to go HIGH for every row (#12945)
I noticed this discrepancy (last row of the matrix treated differently than the
others) when optimizing the input latency of my keyboard controller, see also
https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/
Before this commit, when tuning the delays I noticed ghost key presses when
pressing the F2 key, which is on the last row of the keyboard matrix: the
dead_grave key, which is on the first row of the keyboard matrix, would be
incorrectly detected as pressed.
After this commit, all keyboard matrix rows are interpreted correctly.
I suspect that my setup is more susceptible to this nuance than others because I
use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask
the problem.
* ensure we do not conflict with existing keymap aliases (#12976)
* Add support for up to 4 IS31FL3733 drivers (#12342)
* Convert Encoder callbacks to be boolean functions (#12805)
* [Keyboard] Fix Terrazzo build failure (#12977)
* Do not hard set config in CPTC files (#11864)
* [Keyboard] Corne - Remove legacy revision support (#12226)
* [Keymap] Update to Drashna keymap and user code (based on develop) (#12936)
* Add Full-duplex serial driver for ARM boards (#9842)
* Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987)
* Backlight: add defines for default level and breathing state (#12560)
* Add dire message about LUFA mass storage bootloader (#13014)
* [Keyboard] Remove redundant legacy and common headers for crkbd (#13023)
Was causing compiler errors on some systems.
* Fix keyboards/keymaps for boolean encoder callback changes (#12985)
* `backlight.c`: include `eeprom.h` (#13024)
* Add changelog for 2021-05-29 Breaking Changes merge (#12939)
* Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version
* Add recent develop changes
* Sort recent develop changes
* Remove sections for ChibiOS changes per tzarc
No ChibiOS changes this round.
* Add and sort recent develop changes
* add notes about keyboard moves/deletions
* import changelog for PR 12172
Documents the change to BOOTMAGIC_ENABLE.
* update section headings
* re-sort changelog
* add additional note regarding Bootmagic changes
* remove changelog timestamp
* update dates in main Breaking Changes docs
* fix broken section anchors in previous changelogs
* add link to backlight/eeprom patch to changelog
* highlight some more changes
* link PRs from section headers
* Restore standard readme
* run: qmk cformat --core-only
2021-05-29 23:38:50 +02:00
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
led_matrix_task();
|
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
rgb_matrix_task();
|
|
|
|
#endif
|
|
|
|
|
2020-01-19 01:59:09 +01:00
|
|
|
#if defined(BACKLIGHT_ENABLE)
|
|
|
|
# if defined(BACKLIGHT_PIN) || defined(BACKLIGHT_PINS)
|
|
|
|
backlight_task();
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-05-02 23:44:36 +02:00
|
|
|
#ifdef ENCODER_ENABLE
|
2024-02-18 11:17:15 +01:00
|
|
|
if (encoder_task()) {
|
2022-08-06 12:51:13 +02:00
|
|
|
last_encoder_activity_trigger();
|
2023-03-31 03:27:39 +02:00
|
|
|
activity_has_occurred = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
if (pointing_device_task()) {
|
|
|
|
last_pointing_device_activity_trigger();
|
|
|
|
activity_has_occurred = true;
|
2022-08-06 12:51:13 +02:00
|
|
|
}
|
2020-05-02 23:44:36 +02:00
|
|
|
#endif
|
|
|
|
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-05-07 00:06:43 +02:00
|
|
|
oled_task();
|
2021-09-09 03:34:34 +02:00
|
|
|
# if OLED_TIMEOUT > 0
|
2021-01-21 12:24:07 +01:00
|
|
|
// Wake up oled if user is using those fabulous keys or spinning those encoders!
|
2023-03-31 03:27:39 +02:00
|
|
|
if (activity_has_occurred) oled_on();
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2019-05-07 00:06:43 +02:00
|
|
|
#endif
|
|
|
|
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
st7565_task();
|
2021-09-09 03:34:49 +02:00
|
|
|
# if ST7565_TIMEOUT > 0
|
2021-06-10 09:16:09 +02:00
|
|
|
// Wake up display if user is using those fabulous keys or spinning those encoders!
|
2023-03-31 03:27:39 +02:00
|
|
|
if (activity_has_occurred) st7565_on();
|
2021-06-10 09:16:09 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2016-07-04 17:45:58 +02:00
|
|
|
// mousekey repeat & acceleration
|
2015-04-09 18:32:04 +02:00
|
|
|
mousekey_task();
|
|
|
|
#endif
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_task();
|
|
|
|
#endif
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2018-02-08 21:07:46 +01:00
|
|
|
#ifdef MIDI_ENABLE
|
|
|
|
midi_task();
|
|
|
|
#endif
|
|
|
|
|
2020-07-25 14:01:15 +02:00
|
|
|
#ifdef JOYSTICK_ENABLE
|
|
|
|
joystick_task();
|
|
|
|
#endif
|
|
|
|
|
2022-09-29 19:38:09 +02:00
|
|
|
#ifdef BLUETOOTH_ENABLE
|
|
|
|
bluetooth_task();
|
2021-09-15 17:40:22 +02:00
|
|
|
#endif
|
|
|
|
|
2023-09-25 04:23:31 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
haptic_task();
|
|
|
|
#endif
|
|
|
|
|
2022-01-09 04:50:44 +01:00
|
|
|
led_task();
|
2024-02-16 15:19:02 +01:00
|
|
|
|
|
|
|
#ifdef OS_DETECTION_ENABLE
|
|
|
|
os_detection_task();
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|