summaryrefslogtreecommitdiff
path: root/quantum/via.c
AgeCommit message (Collapse)AuthorFilesLines
2025-11-30[CI] Format code according to conventions (#25827)QMK Bot1-2/+2
Format code according to conventions
2025-11-11VIA Keylog Change (#25504)Cipulot1-1/+10
* WIP * Update via.c temptive fix in formatting for lint errors. * Update via.c let's try this one, thanks mobile GitHub app to not showing spaces right. * Update quantum/via.c Co-authored-by: Joel Challis <git@zvecr.com> * Update quantum/via.c Co-authored-by: Joel Challis <git@zvecr.com> * Merge branch 'qmk:master' into via_keylog_change
2025-06-29Mitigate VIA keylogger security issues (#25414)Joel Challis1-0/+8
Co-authored-by: Nick Brassel <nick@tzarc.org>
2025-04-19Allow for disabling EEPROM subsystem entirely. (#25173)Nick Brassel1-1/+0
2025-03-21Non-volatile memory data repository pattern (#24356)Nick Brassel1-28/+32
* First batch of eeconfig conversions. * Offset and length for datablocks. * `via`, `dynamic_keymap`. * Fix filename. * Commentary. * wilba leds * satisfaction75 * satisfaction75 * more keyboard whack-a-mole * satisfaction75 * omnikeyish * more whack-a-mole * `generic_features.mk` to automatically pick up nvm repositories * thievery * deferred variable resolve * whitespace * convert api to structs/unions * convert api to structs/unions * convert api to structs/unions * fixups * code-side docs * code size fix * rollback * nvm_xxxxx_erase * Updated location of eeconfig magic numbers so non-EEPROM nvm drivers can use them too. * Fixup build. * Fixup compilation error with encoders. * Build fixes. * Add `via_ci` keymap to onekey to exercise VIA bindings (and thus dynamic keymap et.al.), fixup compilation errors based on preprocessor+sizeof. * Build failure rectification.
2023-09-28refactor: move default RGB/LED matrix #defines (#21938)Less/Rikki1-10/+0
* refactor: move default RGB/LED matrix #defines Moving the fallback definitions of macros like LED_MATRIX_VAL_STEP and RGB_MATRIX_MAXIMUM_BRIGHTNESS to header files allows keyboards to leverage these defaults without requiring #ifdef guards (and often repeating said fallback definitions). * style: use if(n)def for consistency and remove redundant UINT8_MAX checks on maximum brightness Co-authored-by: Joel Challis <git@zvecr.com> * refactor: remove INDICATOR_MAX_BRIGHTNESS macro Co-authored-by: Joel Challis <git@zvecr.com> --------- Co-authored-by: Joel Challis <git@zvecr.com>
2023-07-16quantum: remove direct `quantum.h` includes (#21507)Ryan1-2/+24
2023-07-08add VIA support for LED Matrix (#21281)mechlovin1-2/+97
2023-02-23VIA Protocol 12 + fixes (#19916)Nick Brassel1-41/+13
Co-authored-by: Wilba <wilba@wilba.tech> Co-authored-by: zvecr <git@zvecr.com>
2023-01-10[Bug] Use correct functions for RGB Matrix support in VIA (#19554)Drashna Jaelre1-2/+2
2022-11-10VIA V3 - The Custom UI Update (#18222)Wilba1-155/+324
2022-11-05Initial DD keycode migration (#18643)Joel Challis1-1/+0
* Initial DD keycode migration * Sort magic keycodes
2022-07-21VIA Encoder Map Support (#17734)Wilba1-0/+12
2022-06-10Ensure that rgb+via compiles in all cases (#17355)Drashna Jaelre1-0/+8
2022-06-10Add missing bracket for VIA brightness scaling (#17354)Dasky1-1/+1
2022-06-10Scale brigthness for VIA (#17352)yiancar1-6/+7
Co-authored-by: yiancar <yiancar@gmail.com>
2022-04-19Add hacky via support for RGB Matrix (#16086)Drashna Jaelre1-3/+105
2022-02-12Format code according to conventions (#16322)QMK Bot1-9/+9
2022-02-06Add layout change callbacks to VIA (#16087)Drashna Jaelre1-0/+4
* Add layout change callbacks to VIA * Update worklouder example
2021-11-19Move tmk_core/common/<plat> (#13918)Joel Challis1-1/+1
2021-08-20Fix issues with VIA EEPROM init and bring in line with eeconfig ↵Drashna Jaelre1-20/+22
functionality (#13243) Co-authored-by: Ryan <fauxpark@gmail.com>
2021-03-15Fix keycode mappings for via and ensure they don't change within protocol ↵xyzz1-0/+1
(#12130) * Fix keycode mappings for via and ensure they don't change within protocol * Update keycodes * Fix broken keyboards * added the missing keycodes found in via * Remove invalid keycodes Co-authored-by: David Hoelscher <infinityis@users.noreply.github.com>
2021-02-14Disable VIA protocol's EEPROM reset and bootloader jump commands (#11892)Nick Brassel1-13/+0
* Disable VIA protocol's EEPROM reset and bootloader jump commands, and allow for reinstation through #define. * Removed at Wilba's suggestion.
2020-09-21Fix typo in via.c (#10000)Wilba1-1/+1
2020-04-06Configurable VIA layout options default value (#8707)Wilba1-1/+1
2020-03-21Add support for Bootmagic lite when using SPLIT_HAND_PIN (#8347)Joel Challis1-30/+0
* Add support for Bootmagic lite when using SPLIT_HAND_PIN * Deduplicate bootmagic_lite logic from within via * Revert location of defaults so that user overrides still work for now * Tidy up code slightly
2020-01-20Add VIA support for QMK backlight, QMK RGBLight (#7911)Wilba1-3/+179
* Add VIA support for QMK backlight, QMK RGBLight * clang-format changes
2020-01-19Run clang-format manually to fix recently changed files (#7934)Joel Challis1-145/+102
* Run clang-format manually to fix recently changed files * Run clang-format manually to fix recently changed files - revert template files * Run clang-format manually to fix recently changed files - format off for ascii_to_keycode_lut
2020-01-03VIA Configurator Refactor (#7268)Wilba1-0/+400
* VIA Refactor * Remove old code * review changes * review changes * Fix cannonkeys/satisfaction75/prototype:via build * Add via.h to quantum.h * Move backlight init to after backlight config load * Merge branch 'master' into via_refactor_pr * Update user's rules.mk to new way of enabling VIA * Added id_switch_matrix_state * Review changes