~ruther/qmk_firmware

503e02db — alex-ong 6 years ago
Merge branch 'debounce_refactor' of https://github.com/alex-ong/qmk_firmware into debounce_refactor
10cc4235 — alex-ong 6 years ago
Malloc array in debounce_eager_pk, since split keyboards only use MATRIX_ROWS/2.
d30d5eeb — Alex Ong 6 years ago
Renamed DEBOUNCE_ALGO to DEBOUNCE_TYPE
039dde3a — Alex Ong 6 years ago
Fixed compilation error with debounce_sym_g
7cb8d3c7 — Alex Ong 6 years ago
Bug fix - was using MATRIX_ROWS instead of num_rows
b5b11954 — Alex Ong 6 years ago
Removed #include "matrix.h" from debounce.h
cce8dfab — alex-ong 6 years ago
Removed check for custom_matrix. We can safely include the debounce file for compilation when custom_matrix is used.
14ed96aa — alex-ong 6 years ago
Moved debouncing_time variable  to inside #if debounce
5b7fc758 — alex-ong 6 years ago
Restored debounce.h since there wasnt any real change.
574fc644 — alex-ong 6 years ago
Whitespace cleanup.
4d873359 — alex-ong 6 years ago
Working eager_pk
123608fb — alex-ong 6 years ago
DO NOT USE Revert back to original API to support split_keyboards.
d0b691df — alex-ong 6 years ago
DO NOT USE - debounce successfully compiled.
3949ab32 — alex-ong 6 years ago
Remove accidental xeal60 commit
39ca330f — alex-ong 6 years ago
DO NOT USE - Removed debounce from TMK.
c9ba6186 — Alex Ong 6 years ago
DO NOT USE Merge branch 'master' into debounce_refactor

Merged, however now there are two debounce.h and debounce.c to mess around with and coalesce.
# Conflicts:
#	quantum/matrix.c
d977daa8 — Alex Ong 6 years ago
Merge branch 'master' of https://github.com/qmk/qmk_firmware
0306e487 — Drashna Jaelre 6 years ago
Circular animation (#4796)

* Add ability to animate arm_atsam led matrix from the center of a circle

* Make arm_atsam led matrix circular animation circular rather than obloid

* Fix indentation in tmk_core led_matrix.c
1d3b9eea — walkerstop 6 years ago
[Keyboard] Support for Wheat Field Peripherals blocked 65% PCB (#4763)

* Basic Fanoe support (no LED yet)

* Enable RGB lights

* Backlighting support

* Change to reflect Wheat Field brand of Fanoe PCB

* Hot swap variant

* Fix review comment issues

* Fix review issues

* Corrected rules.mk

* Change naming to avoid using possibly copyrighted names

* Added info.json

* Corrected manufacturer name in info.json

* Keymap updates

* Add layout for use with ws2812b and such

* Fixes based on code review
move `#include "rgb.h"` from quantum.h to quantum.c

I think `quantum.h` should contain only API declarations that `quantum.c` provides externally. `rgb.h` contains function weak definitions. This should not be in `quantum.h`.
Next