~ruther/qmk_firmware

1ae4d520 — XScorpion2 4 years ago
Keyboards/sol rev2 fix (#13533)

* Fixed a recent develop error

* minor fix cause I am tired
ac2e6e01 — Takeshi ISHII 4 years ago
Change the prototype of matrix_output_unselect_delay() (#13045)

The prototype of matrix_output_unselect_delay() has been changed as follows.

```c
void matrix_output_unselect_delay(uint8_t line, bool key_pressed);
```

Currently, no keyboard seems to be redefining `matrix_output_unselect_delay()`, so there is no change in the system behavior.

With this change, the keyboard level code can get some optimization hints, for example, the following.

```c
 void matrix_output_unselect_delay(uint8_t line, bool key_pressed) {
     /* If none of the keys are pressed,
      *  there is no need to wait for time for the next line. */
     if (key_pressed) {
 #ifdef MATRIX_IO_DELAY
 #  if MATRIX_IO_DELAY > 0
         wait_us(MATRIX_IO_DELAY);
 #  endif
 #else
         wait_us(30);
 #endif
     }
}
```
a62b1017 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
8f0bf52b — James Young 4 years ago
ID67 codebase touch-up (#13521)

* correct layout data

Fix incorrect key sizes/positions.

* rename LAYOUT to LAYOUT_65_ansi_blocker

* tweak human-friendly formatting for info.json

Add new lines for new rows.

* adjust keycode alignment in via keymap

* clean up extra lines in readme file

* enable 65_ansi_blocker Community Layout support

* clean up rules.mk

Aligns the inline comments.
00e97aae — Alex Marmon 4 years ago
[Keymap] add simple gmmk pro macos keymap with rgb (#13504)

9d282d81 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
c024acd7 — Albert Y 4 years ago
[Keyboard] RGB Matrix support for TBK Mini (#13506)

Co-authored-by: filterpaper <filterpaper@localhost>
9c74fd14 — Chris Cullin 4 years ago
Enable g_is31_leds PROGMEM for RGB Matrix IS31FL3737 driver (#13480)

47062318 — Joakim Tufvegren 4 years ago
Fix two out of bounds accesses from #13330. (#13525)

Two occurrences of `MATRIX_ROWS` weren't properly changed to
`ROWS_PER_HAND` in #13330, causing a crash during boot on at least my
Ergodox Infinity (including #13481).
89980ff0 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
6b8168c3 — Kwabena Aduse-Poku 4 years ago
[Keyboard] Add Bloop65 (#13388)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
ccc0b23a — Drashna Jaelre 4 years ago
Unify matrix for split common and regular matrix (#13330)

0b06452d — Zach White 4 years ago
Matrix consistency check (#13470)

* Add a check to make sure the matrix sizes match the actual matrix size

* make flake8 happy
fd284c43 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
20a28d67 — jackytrabbit 4 years ago
[Keyboard] Update lazydesigners/the60/rev2/rev2.h (#13505)

Update lazydesigners/the60/rev2/rev2.h
b71ee47c — Rys Sommefeldt 4 years ago
[Keyboard] CapsUnlocked CU7 (#13429)

Co-authored-by: Drashna Jaelre <drashna@live.com>
14ba8061 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
4f3a4eca — Drashna Jaelre 4 years ago
[Keymap] Fix Corne Via Layout properly (#13518)

ca0c5712 — QMK Bot 4 years ago
Merge remote-tracking branch 'origin/master' into develop
0453b61e — James Young 4 years ago
[Keyboard] Wuque Studio Ikki68 Aurora codebase touch-up (#13510)

Next