~ruther/qmk_firmware

bcd4f34b — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
analog.[ch]: remove unnecessary includes (#16471)

9958f9e1 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
Melody96 refactor (#16455)

c45ed893 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
c6111aa2 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
Typo in squeezing_avr.md (#16506)

Fixed typo in squeezing_avr docs.
d1bd5a01 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
7fb312cc — Joel Challis 3 years ago
Fix use of ISSI driver config before init (#16493)

77ea1bda — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
4a66bdf2 — Takeshi ISHII 3 years ago
Fix helix/rev2 not working properly when using split_common. (#16512)

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
```
b16af157 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
ae2c77c8 — Gompa 3 years ago
[Bug] fix v-usb connection enumeration, ifdef workaround (#16511)

Co-authored-by: Joel Challis <git@zvecr.com>
8a5ad2a1 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
75b40dc7 — Takeshi ISHII 3 years ago
Fix mistakes in the include path in `helix/rev2/local_features.mk`. (#16507)

```diff
  --- a/keyboards/helix/rev2/local_features.mk
  +++ b/keyboards/helix/rev2/local_features.mk
  @@ -6,7 +6,7 @@
   #

   KEYBOARD_LOCAL_FEATURES_MK :=
  --include $(strip $(HELIX_TOP_DIR)/pico/override_helix_options.mk) ## File ded  icated to maintenance
  +-include $(strip $(HELIX_TOP_DIR)/rev2/override_helix_options.mk) ## File dedicated to maintenance
  ```
9f95844c — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
96b6ddf4 — Jake VanderVaate 3 years ago
fixed typo in docs/newbs_getting_started.md (#16501)

d75ce486 — QMK Bot 3 years ago
Merge remote-tracking branch 'origin/master' into develop
e73f8e94 — Takeshi ISHII 3 years ago
Change 'helix/rev2:default' setting to use split_common (#16432)

* add licenses message to helix/rev2 files

* Minimize the processing of helix/rev2/local_features.mk

* Changed helix/rev2 default setting to use split_common

* fix helix/rev2:edvorakjp build error

* Remove unnecessary '#include' from keymap.c

* helix keymaps Workaround for build errors. five_rows_jis, fraanrosi, froggy, froggy_106, yshrsmz

* Revert "fix helix/rev2:edvorakjp build error"

This reverts commit 731dbbe15155b3efe2ff9f5ad61c7d0cf529e837.
Separated into a single PR #16433.

* Revert "Changed helix/rev2 default setting to use split_common"

This reverts commit e76dbd7762e06e0781ee004213878b1a5029fa98.

* add 'SPLIT_*_STATE_ENABLE' into helix/rev2/config.h

* Revert "helix keymaps Workaround for build errors. five_rows_jis, fraanrosi, froggy, froggy_106, yshrsmz"

This reverts commit 9b316c1c6a532f908f2ac430233089797ce7c794.

* change helix:default to use split_common

* change helix:five_rows to use split_common

* add comment into helix/rev2/rules.mk

* change helix:led_test to use split_common
Next