From bd1ad405bfb50a42f162b66b00037a7630474307 Mon Sep 17 00:00:00 2001 From: Cole Markham Date: Wed, 7 Mar 2018 16:06:41 -0600 Subject: Update Meira for revision 1.1 to enable backlighting by default (#2468) * Update Meira for revision 1.1 to enable backlighting by default * Updates to fix other keymaps --- keyboards/meira/keymaps/default/keymap.c | 5 ++--- keyboards/meira/keymaps/grahampheath/rules.mk | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'keyboards/meira/keymaps') diff --git a/keyboards/meira/keymaps/default/keymap.c b/keyboards/meira/keymaps/default/keymap.c index acde30afc..dd55859a5 100644 --- a/keyboards/meira/keymaps/default/keymap.c +++ b/keyboards/meira/keymaps/default/keymap.c @@ -14,7 +14,6 @@ * along with this program. If not, see . */ #include "meira.h" -#include "issi.h" #include "lighting.h" #ifdef RGBLIGHT_ENABLE @@ -277,10 +276,10 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return false; break; case BL_TOGG: -#ifdef ISSI_ENABLE +#ifdef BACKLIGHT_ENABLE if (record->event.pressed) { print("Enabling backlight\n"); - issi_init(); + backlight_init_ports(); } #endif return false; diff --git a/keyboards/meira/keymaps/grahampheath/rules.mk b/keyboards/meira/keymaps/grahampheath/rules.mk index 8288530c9..b3b1980eb 100644 --- a/keyboards/meira/keymaps/grahampheath/rules.mk +++ b/keyboards/meira/keymaps/grahampheath/rules.mk @@ -1,3 +1,5 @@ AUDIO_ENABLE = yes # Audio output on port C6 EXTRAFLAGS+=-flto # -4-7k MOUSEKEY_ENABLE = no # Mouse keys(-47kb) +ISSI_ENABLE = no +BACKLIGHT_ENABLE = no \ No newline at end of file -- cgit v1.2.3-24-g4f1b