summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-24[Core] Refactor OLED to allow easy addition of other types (#13454)Xelus22
* add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
2021-08-24Fix Mouse Shared EP functionality (#14136)Drashna Jaelre
Specifically, if you enable the shared endpoint for mouse reports (or keyboard, which force enables it for mouse), and you don't have mousekeys enabled, it does not properly enable shared mouse EP for pointing device (which uses mouse reports). This cause it to error out in compiling. This fixes up some of the logic to ensure that all use cases are supported, and consolidates some of the code.
2021-08-23Fix bootloadHID comments breaking :flash (#14133)Drashna Jaelre
2021-08-23eeprom_stm32: implement high density wear leveling (#12567)Donald Kjer
* eeprom_stm32: implement wear leveling Update EECONFIG_MAGIC_NUMBER eeprom_stm32: check emulated eeprom size is large enough * eeprom_stm32: Increasing simulated EEPROM density on stm32 * Adding utility script to decode emulated eeprom * Adding unit tests * Applying qmk cformat changes * cleaned up flash mocking * Fix for stm32eeprom_parser.py checking via signature with wrong base * Fix for nk65 keyboard Co-authored-by: Ilya Zhuravlev <whatever@xyz.is> Co-authored-by: zvecr <git@zvecr.com>
2021-08-23Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-24Fix US_RDQU keycode (#13464)Olli Helenius
`US_RDQU` and `US_LDQU` were aliased to the same keycode. `US_RDQU` should use the right bracket.
2021-08-24adding uf2 flash support for blackpill 401 (#13968)Path Nirvana
* adding uf2 flash support for blackpill 401 * forgot to add blackpill to keyboard header file * making changes requested by drashna * fixing tzarc s comments * removing the keyboard * undo the change to dactyl_manuform.h
2021-08-23Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-23[Keyboard] update default and via keymap for ocean/wang_v2 (#14122)Rifaa Subekti
2021-08-23Fixup line endings.Nick Brassel
2021-08-22[Keymap] Feature rich keymap for GMMK Pro (ANSI) (#14120)stickandgum
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
2021-08-23Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-22[Keyboard] Update rgb matrix config in kbdfans/kbd67/mkiirgb/v3/v3.c (#14094)Vino Rodrigues
This patch corrects 2 issues with the LED matrix of the KDBFans KBD67 Lite (v3) * Incorrect mapping of the right-shift, down-arrow, and right-arrow. (i.e. `NO_LED` positions of the `g_led_config` key matrix in the .c file do not match the `LAYOUT_65_ansi_blocker` matrix in the .h file. * Remapping of the *LED Index to Physical Position* using physical measurements from actual keyboard and accounting for the southpaw LED position to define the true centre of the keyboard (more relevant to circular animations).
2021-08-23Fix typo (#14118)Dasky
2021-08-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-22Add fix for brew upgrade (#12921)Bror Winther
Add a fix for `brew upgrade` so only formulae is upgraded and not casks
2021-08-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-22Fix line endings for `quark_squared` info.json (#14113)Ryan
2021-08-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-21[Keyboard] add support for Quark² (#14109)npspears
Quark² is a hotswap version of the Quark PCB
2021-08-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-21[Keyboard] Keyprez bison (#14100)Christian Sandven
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-21[Keyboard] Kyria default reformat (#14080)precondition
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-21[Keymap] added bongocat keymap to 0xCB Static (#14093)Conor Burns
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-08-22Organize KPrepublic, K.T.E.C, xiudi boards into directories (#12159)peepeetee
* reset; redoing my steps; and recommit * include xd002/.noci
2021-08-22Warn when building a board that uses arm_atsam (#10904)Nick Brassel
* Add deprecation warning during build when building a board that uses arm_atsam. * Rewording. * Wording. * Fixup.
2021-08-22[Keyboard] Disable Console on Keebio Quefrency (#14108)Drashna Jaelre
2021-08-21[Keyboard] Fix compile issues for Tractyl Manuform (#14105)Drashna Jaelre
2021-08-21[Core] Fix copypasta issue with pmw3360 sensor config (#14106)Drashna Jaelre
2021-08-22Make solo half of split keyboards (more) usable. (#13523)Joakim Tufvegren
* Make solo half of split keyboards (more) usable. Using only one half of a split keyboard (that's using the split_common framework to communicate) is not a great experience, since several read timeouts per scan cycle cause an unusably slow scan rate. This change blocks all split communication attempts for 500 ms (configurable) after an error occurs, causing the scan rate to become at least _more_ usable, but might need some tweaking to work fully on most keyboards. One read timeout still needs to occur after the 500 ms has passed, and if that timeout isn't low enough, some scan cycles may still be too slow. * Fix lint complaint. * Require 25 consecutive comm errors to see comms as disconnected. The number of max errors can be overridden by defining `SPLIT_MAX_CONNECTION_ERRORS`. * Add comments to new defines, and ability to disable disconnection check. Also increase `SPLIT_MAX_CONNECTION_ERRORS` to 40, since it's divisible by most relevant numbers for the description. * Make lint happy ...again * Only update `connection_check_timer` when needed. * Add new defines to split keyboard documentation. * Move connection timeout logic to transport.c, add `is_transport_connected`. * Use split_common disconnection logic in matrix.c. Instead of doing more or less the same thing twice. * Move disconnection logic to `transport_master`. Is a cleaner implementation, and causes the scan rate while disconnected to increase instead of decrease. * Lint fixes. * Lower default `SERIAL_USART_TIMEOUT` to 20 ms. The read timeout must be low enough to not cause exessively long scan cycles when using a solo split half. 10 ms was determined from testing to work fine even with the slowest defined baudrate of 19200 (5 ms was too low for that case), so 20 ms should be fine for most cases. * Remove `SERIAL_USART_TIMEOUT` from ergodox_infinity/config.h Was somewhat mistakenly included in an earlier PR. * Fix building with `USE_I2C`. * Reduce built firmware size. Not really sure why this works, the idea was taken from tzarc's work on split disconnection. * Tweak and improve opt-out for split disconnection logic. There are now two ways to opt out from this feature: * Set `SPLIT_MAX_CONNECTION_ERRORS` to 0. This will completely disable the connection status checks (also affects the slave matrix reset logic in matrix.c, though). * Set `SPLIT_CONNECTION_CHECK_TIMEOUT` to 0. This will only disable the communication throttling while disconnected. Will make the firmware smaller. * Make split disconnection logic work with custom transports. Includes a fallback implementation for keyboards using a custom split_util.c but not a custom matrix.c (currently no such keyboard seems to be merged, though). * Remove unnecessary include of timer.h Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-22Updated RGB Matrix suspend define part 3 (#13954)Drashna Jaelre
* Updated RGB Matrix suspend define part 3 * Revert "Update config.h for kbdfans/kbd67/mkiirgb/v3 (#13978)" This reverts commit 80015f7fb023f27ad5307815fd5433694a3bcb4a. * Add additional boards/keymaps
2021-08-21[Keymap] Drashna's Improve OLEDs and custom Split code (#14063)Drashna Jaelre
* Fill the oleds with right mods * Enable double mods on x32 oleds * Disable forced NKRO * Make oleds fancy only on good MCUs * Overhaul oled display * Further enhance oled, with kitty! * Final oled form * Not working transport * Transport id of woring * Add acceleration * fix button placement for accel macro * Fix accelartion location and behavior * Remove OLED sync code * Fix alignment issue * Remove audio hack * Fix up zima keymap * Add matrix slave scan function and cleanup drashna.h * Clean up user space * Allow userspace sync to be disable-able * Fix weird issue with audio * Fix alignment issue with user split sync * Disable second rgb matrix task * Disable additional animations * Change dynamic keymap settings * Hacky fix for borked corne * Add Blackpill (F411) support to tractyl manuform * remove manual via eeprom reset * Remove all references to rgblight twinkle * Fix issues with config processing
2021-08-20Improve pmw3360 sensor and make it more hardware agnostic (#14097)Drashna Jaelre
2021-08-21Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-21[Keyboard] Fix naiping/npminila layout macro (#14098)Drashna Jaelre
2021-08-20Fix issues with VIA EEPROM init and bring in line with eeconfig ↵Drashna Jaelre
functionality (#13243) Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-21Fix up compilation issues. (#14095)Nick Brassel
2021-08-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-20[Core] [Docs] Remove travis-ci references (#13916)Spaceman
2021-08-20Fix LED Matrix suspend code (#14090)Ryan
2021-08-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-20[Keyboard] Add Naiping series keyboard (#14040)Weirdo
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-20Merge remote-tracking branch 'origin/master' into developZach White
Resolved Conflicts: lib/python/qmk/info.py
2021-08-20Restore layout count validation (#14068)Joel Challis
2021-08-20[Bug] Fix RGB/LED Matrix Suspend code (#14084)Drashna Jaelre
2021-08-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-20[Keyboard] Add IBM Model M SSK configuration (#14050)tiltowait
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-20Align DIP_SWITCH_PINS_RIGHT implementation with encoders (#14079)Joel Challis
2021-08-20Fix issues with recent keymap.json changes (#14089)Joel Challis
* Fix issues with recent keymap.json changes * Allow empty author string