diff options
author | Jack Humbert <jack.humb@gmail.com> | 2023-06-20 20:32:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-20 20:32:32 -0400 |
commit | 42cd55e08d5ba1b7b5bbbedaee1737c9febdcd64 (patch) | |
tree | 8596d8e39e286ea5c31a0fe0c258d207db2ba1a1 /keyboards/planck/rev7/keymaps | |
parent | ac14fce06da3b73b6b150af97d956fe573b7882a (diff) |
Planck Matrix Fixes (#21196)
* fix non-default keymap compiling, initial matrix state, watchdog options
* fix: allow planck/rev7 to be used with ENCODER_ENABLE = no
* chore: update function name on all cases.
* remove old midi tone option
Co-authored-by: Ryan <fauxpark@gmail.com>
* fixes abhixec's planck keymap
* add audio enable condition to abhixec's planck keymap
* add audio enable condition to all muse includes
* Revert "add audio enable condition to all muse includes"
This reverts commit 9779e908970dbf7cf81b1a3f968ef2e85ae2b76f.
* Revert "add audio enable condition to abhixec's planck keymap"
This reverts commit 24c742a5e8ddd55c45ce9f1917b0cb237d4bf721.
* Revert "fixes abhixec's planck keymap"
This reverts commit 4bb085d1ff00febc92ff6211da4fb776c6379fad.
---------
Co-authored-by: Peter.Falken <luis@bitjester.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/planck/rev7/keymaps')
-rw-r--r-- | keyboards/planck/rev7/keymaps/default/config.h | 6 | ||||
-rw-r--r-- | keyboards/planck/rev7/keymaps/default/keymap.c | 9 |
2 files changed, 0 insertions, 15 deletions
diff --git a/keyboards/planck/rev7/keymaps/default/config.h b/keyboards/planck/rev7/keymaps/default/config.h index c3de26365b..fbbab996e1 100644 --- a/keyboards/planck/rev7/keymaps/default/config.h +++ b/keyboards/planck/rev7/keymaps/default/config.h @@ -41,9 +41,3 @@ - etc. */ // #define MIDI_ADVANCED - -/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ -// #define MIDI_TONE_KEYCODE_OCTAVES 2 - -// Most tactile encoders have detents every 4 stages -#define ENCODER_RESOLUTION 4 diff --git a/keyboards/planck/rev7/keymaps/default/keymap.c b/keyboards/planck/rev7/keymaps/default/keymap.c index 37d7ba0d23..4ac4c0de4f 100644 --- a/keyboards/planck/rev7/keymaps/default/keymap.c +++ b/keyboards/planck/rev7/keymaps/default/keymap.c @@ -189,17 +189,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { case BACKLIT: if (record->event.pressed) { register_code(KC_RSFT); -#ifdef BACKLIGHT_ENABLE - backlight_step(); -#endif -#ifdef KEYBOARD_planck_rev5 - writePinLow(E6); -#endif } else { unregister_code(KC_RSFT); -#ifdef KEYBOARD_planck_rev5 - writePinHigh(E6); -#endif } return false; break; |