Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove `matrix_key_count()` (#16603) | Ryan | 2022-03-10 | 1 | -9/+0 |
| | | | | | * Remove `matrix_key_count()` * Remove `matrix_bitpop()` | ||||
* | Fix helix/rev2 not working properly when using split_common. (#16512) | Takeshi ISHII | 2022-03-03 | 1 | -0/+350 |
When helix/rev2 was using split_common, it didn't work properly and I couldn't type on the right hand side. The cause is that the following code, added in 0.16.0 to `quantum/keyboard.c`, does not include `quantum/split_common/split_util.h` but instead includes `keyboards/helix/rev2/split_util.h`. Therefore, `split_pre_init()/split_post_init()` in `quantum/split_common/split_util.c` was not called. ```c #ifdef SPLIT_KEYBOARD # include "split_util.h" #endif ``` |