diff options
| author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-11-28 12:02:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-28 12:02:18 -0800 |
| commit | c66df1664497546f32662409778731143e45a552 (patch) | |
| tree | da73a2d532a27685a31d932b3a44a707d4a3af81 /keyboards/kbdfans | |
| parent | 15385d4113414d42bd062c60c9de5df797d3157f (diff) | |
| download | qmk_firmware-c66df1664497546f32662409778731143e45a552.tar.gz qmk_firmware-c66df1664497546f32662409778731143e45a552.zip | |
2020 November 28 Breaking Changes Update (#11053)
* Branch point for 2020 November 28 Breaking Change
* Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183)
* Add support for soft serial to ATmega32U2 (#10204)
* Change MIDI velocity implementation to allow direct control of velocity value (#9940)
* Add ability to build a subset of all keyboards based on platform.
* Actually use eeprom_driver_init().
* Make bootloader_jump weak for ChibiOS. (#10417)
* Joystick 16-bit support (#10439)
* Per-encoder resolutions (#10259)
* Share button state from mousekey to pointing_device (#10179)
* Add hotfix for chibios keyboards not wake (#10088)
* Add advanced/efficient RGB Matrix Indicators (#8564)
* Naming change.
* Support for STM32 GPIOF,G,H,I,J,K (#10206)
* Add milc as a dependency and remove the installed milc (#10563)
* ChibiOS upgrade: early init conversions (#10214)
* ChibiOS upgrade: configuration file migrator (#9952)
* Haptic and solenoid cleanup (#9700)
* XD75 cleanup (#10524)
* OLED display update interval support (#10388)
* Add definition based on currently-selected serial driver. (#10716)
* New feature: Retro Tapping per key (#10622)
* Allow for modification of output RGB values when using rgblight/rgb_matrix. (#10638)
* Add housekeeping task callbacks so that keyboards/keymaps are capable of executing code for each main loop iteration. (#10530)
* Rescale both ChibiOS and AVR backlighting.
* Reduce Helix keyboard build variation (#8669)
* Minor change to behavior allowing display updates to continue between task ticks (#10750)
* Some GPIO manipulations in matrix.c change to atomic. (#10491)
* qmk cformat (#10767)
* [Keyboard] Update the Speedo firmware for v3.0 (#10657)
* Maartenwut/Maarten namechange to evyd13/Evy (#10274)
* [quantum] combine repeated lines of code (#10837)
* Add step sequencer feature (#9703)
* aeboards/ext65 refactor (#10820)
* Refactor xelus/dawn60 for Rev2 later (#10584)
* add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824)
* [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549)
* update chibios os usb for the otg driver (#8893)
* Remove HD44780 References, Part 4 (#10735)
* [Keyboard] Add Valor FRL TKL (+refactor) (#10512)
* Fix cursor position bug in oled_write_raw functions (#10800)
* Fixup version.h writing when using SKIP_VERSION=yes (#10972)
* Allow for certain code in the codebase assuming length of string. (#10974)
* Add AT90USB support for serial.c (#10706)
* Auto shift: support repeats and early registration (#9826)
* Rename ledmatrix.h to match .c file (#7949)
* Split RGB_MATRIX_ENABLE into _ENABLE and _DRIVER (#10231)
* Split LED_MATRIX_ENABLE into _ENABLE and _DRIVER (#10840)
* Merge point for 2020 Nov 28 Breaking Change
Diffstat (limited to 'keyboards/kbdfans')
25 files changed, 7 insertions, 296 deletions
diff --git a/keyboards/kbdfans/kbd19x/config.h b/keyboards/kbdfans/kbd19x/config.h index c0cea36ff..edaf51215 100644 --- a/keyboards/kbdfans/kbd19x/config.h +++ b/keyboards/kbdfans/kbd19x/config.h | |||
| @@ -194,30 +194,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 194 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 194 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 195 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 195 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 196 | 196 | ||
| 197 | /* | ||
| 198 | * HD44780 LCD Display Configuration | ||
| 199 | */ | ||
| 200 | /* | ||
| 201 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 202 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 203 | |||
| 204 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 205 | |||
| 206 | #if LCD_IO_MODE | ||
| 207 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 208 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 209 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 210 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 211 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 212 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 213 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 214 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 215 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 216 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 217 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 218 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 219 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 220 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 221 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 222 | #endif | ||
| 223 | */ | ||
diff --git a/keyboards/kbdfans/kbd19x/rules.mk b/keyboards/kbdfans/kbd19x/rules.mk index 1c76790f3..39c3a6219 100644 --- a/keyboards/kbdfans/kbd19x/rules.mk +++ b/keyboards/kbdfans/kbd19x/rules.mk | |||
| @@ -30,4 +30,3 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
diff --git a/keyboards/kbdfans/kbd4x/config.h b/keyboards/kbdfans/kbd4x/config.h index 6928ea8ff..e7f570c69 100644 --- a/keyboards/kbdfans/kbd4x/config.h +++ b/keyboards/kbdfans/kbd4x/config.h | |||
| @@ -190,30 +190,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 190 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 190 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 191 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 191 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 192 | 192 | ||
| 193 | /* | ||
| 194 | * HD44780 LCD Display Configuration | ||
| 195 | */ | ||
| 196 | /* | ||
| 197 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 198 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 199 | |||
| 200 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 201 | |||
| 202 | #if LCD_IO_MODE | ||
| 203 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 204 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 205 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 206 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 207 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 208 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 209 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 210 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 211 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 212 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 213 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 214 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 215 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 216 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 217 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 218 | #endif | ||
| 219 | */ | ||
diff --git a/keyboards/kbdfans/kbd4x/rules.mk b/keyboards/kbdfans/kbd4x/rules.mk index 7c7b490f6..1e2096924 100644 --- a/keyboards/kbdfans/kbd4x/rules.mk +++ b/keyboards/kbdfans/kbd4x/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = ortho_4x12 planck_mit | 34 | LAYOUTS = ortho_4x12 planck_mit |
diff --git a/keyboards/kbdfans/kbd66/keymaps/maartenwut/config.h b/keyboards/kbdfans/kbd66/keymaps/maartenwut/config.h deleted file mode 100644 index c7b3d6ecc..000000000 --- a/keyboards/kbdfans/kbd66/keymaps/maartenwut/config.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | /* Copyright 2018 Alex Peters | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #ifndef CONFIG_USER_H | ||
| 18 | #define CONFIG_USER_H | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | // place overrides here | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/keyboards/kbdfans/kbd66/keymaps/maartenwut/keymap.c b/keyboards/kbdfans/kbd66/keymaps/maartenwut/keymap.c deleted file mode 100755 index daeb93477..000000000 --- a/keyboards/kbdfans/kbd66/keymaps/maartenwut/keymap.c +++ /dev/null | |||
| @@ -1,62 +0,0 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | #define _MA 0 | ||
| 4 | #define _GA 1 | ||
| 5 | #define _FL 2 | ||
| 6 | #define _AR 3 | ||
| 7 | |||
| 8 | #define TRNS KC_TRNS | ||
| 9 | #define ______ KC_NO | ||
| 10 | #define trigger_time 400 | ||
| 11 | |||
| 12 | #define LSHIFT OSM(MOD_LSFT) | ||
| 13 | #define SPACE LT(_AR, KC_SPC) | ||
| 14 | |||
| 15 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 16 | // Main Layer | ||
| 17 | [_MA] = LAYOUT_all( | ||
| 18 | KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, ______, KC_BSPC, KC_MPLY, | ||
| 19 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, | ||
| 20 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 21 | LSHIFT, TRNS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, TRNS, KC_UP, | ||
| 22 | KC_LCTL, KC_LGUI, KC_LALT, SPACE, SPACE, KC_RALT, KC_RCTRL, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT), | ||
| 23 | |||
| 24 | //Function Layer | ||
| 25 | [_FL] = LAYOUT_all( | ||
| 26 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, TRNS, RESET, KC_PSCR, | ||
| 27 | TRNS, ______, ______, ______, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, ______, | ||
| 28 | TRNS, ______, ______, ______, TRNS, TG(_GA), TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 29 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, KC_VOLD, KC_VOLU, KC_MUTE, TRNS, TRNS, KC_PGUP, | ||
| 30 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, ______, KC_PGDN, ______), | ||
| 31 | |||
| 32 | //Arrow keys layer (space bar) | ||
| 33 | [_AR] = LAYOUT_all( | ||
| 34 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, TRNS, TRNS, TRNS, | ||
| 35 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 36 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 37 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 38 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS), | ||
| 39 | |||
| 40 | //Game layer (fn + g) | ||
| 41 | [_GA] = LAYOUT_all( | ||
| 42 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 43 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 44 | TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 45 | KC_LSFT, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, | ||
| 46 | TRNS, TRNS, TRNS, KC_SPC, KC_SPC, TRNS, TRNS, MO(_FL), TRNS, TRNS, TRNS), | ||
| 47 | }; | ||
| 48 | |||
| 49 | void matrix_init_user() { | ||
| 50 | //Set led port to output | ||
| 51 | DDRB |= (1<<2); | ||
| 52 | } | ||
| 53 | |||
| 54 | void led_set_user(uint8_t usb_led) { | ||
| 55 | if (usb_led & (1<<USB_LED_CAPS_LOCK)) { | ||
| 56 | // Turn capslock on | ||
| 57 | PORTB &= ~(1<<2); | ||
| 58 | } else { | ||
| 59 | // Turn capslock off | ||
| 60 | PORTB |= (1<<2); | ||
| 61 | } | ||
| 62 | } | ||
diff --git a/keyboards/kbdfans/kbd66/keymaps/maartenwut/readme.md b/keyboards/kbdfans/kbd66/keymaps/maartenwut/readme.md deleted file mode 100755 index 24be72c01..000000000 --- a/keyboards/kbdfans/kbd66/keymaps/maartenwut/readme.md +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | # Maartenwut's KBD66 layout | ||
| 2 | |||
| 3 | This is Maartenwut's layout, which is really similar to Maartenwut's Tada68 layout. \ No newline at end of file | ||
diff --git a/keyboards/kbdfans/kbd67/hotswap/config.h b/keyboards/kbdfans/kbd67/hotswap/config.h index 589d76da3..555223138 100644 --- a/keyboards/kbdfans/kbd67/hotswap/config.h +++ b/keyboards/kbdfans/kbd67/hotswap/config.h | |||
| @@ -209,34 +209,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 211 | 211 | ||
| 212 | /* | ||
| 213 | * HD44780 LCD Display Configuration | ||
| 214 | */ | ||
| 215 | /* | ||
| 216 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 217 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 218 | |||
| 219 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 220 | |||
| 221 | #if LCD_IO_MODE | ||
| 222 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 223 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 224 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 225 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 226 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 227 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 228 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 229 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 230 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 231 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 232 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 233 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 234 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 235 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 236 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 237 | #endif | ||
| 238 | */ | ||
| 239 | |||
| 240 | /* Bootmagic Lite key configuration */ | 212 | /* Bootmagic Lite key configuration */ |
| 241 | // #define BOOTMAGIC_LITE_ROW 0 | 213 | // #define BOOTMAGIC_LITE_ROW 0 |
| 242 | // #define BOOTMAGIC_LITE_COLUMN 0 | 214 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd67/hotswap/rules.mk b/keyboards/kbdfans/kbd67/hotswap/rules.mk index 7739b69c0..921458df3 100644 --- a/keyboards/kbdfans/kbd67/hotswap/rules.mk +++ b/keyboards/kbdfans/kbd67/hotswap/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = 65_ansi_blocker_split_bs | 34 | LAYOUTS = 65_ansi_blocker_split_bs |
diff --git a/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk b/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk index 9fa821844..7f3e239ad 100644 --- a/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk +++ b/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = 65_ansi_blocker 65_ansi_blocker_split_bs 65_iso_blocker 65_iso_blocker_split_bs \ No newline at end of file | 34 | LAYOUTS = 65_ansi_blocker 65_ansi_blocker_split_bs 65_iso_blocker 65_iso_blocker_split_bs |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v1/rules.mk b/keyboards/kbdfans/kbd67/mkiirgb/v1/rules.mk index ea3746069..4e9bcf21a 100644 --- a/keyboards/kbdfans/kbd67/mkiirgb/v1/rules.mk +++ b/keyboards/kbdfans/kbd67/mkiirgb/v1/rules.mk | |||
| @@ -9,6 +9,7 @@ CONSOLE_ENABLE = no # Console for debug | |||
| 9 | COMMAND_ENABLE = no # Commands for debug and configuration | 9 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 10 | NKRO_ENABLE = yes # USB Nkey Rollover | 10 | NKRO_ENABLE = yes # USB Nkey Rollover |
| 11 | AUDIO_ENABLE = no | 11 | AUDIO_ENABLE = no |
| 12 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 12 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
| 13 | RGB_MATRIX_DRIVER = IS31FL3731 | ||
| 13 | 14 | ||
| 14 | LAYOUTS = 65_ansi_blocker | 15 | LAYOUTS = 65_ansi_blocker |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk b/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk index 65ee5ae3e..02fadb469 100644 --- a/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk +++ b/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk | |||
| @@ -30,6 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | |||
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 32 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 32 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
| 33 | RGB_MATRIX_DRIVER = IS31FL3731 | ||
| 33 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in | 34 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in |
| 34 | 35 | ||
| 35 | LAYOUTS = 65_ansi_blocker | 36 | LAYOUTS = 65_ansi_blocker |
diff --git a/keyboards/kbdfans/kbd67/rev1/config.h b/keyboards/kbdfans/kbd67/rev1/config.h index a713143a4..b2fffff2e 100644 --- a/keyboards/kbdfans/kbd67/rev1/config.h +++ b/keyboards/kbdfans/kbd67/rev1/config.h | |||
| @@ -206,34 +206,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 206 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 206 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 207 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 207 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 208 | 208 | ||
| 209 | /* | ||
| 210 | * HD44780 LCD Display Configuration | ||
| 211 | */ | ||
| 212 | /* | ||
| 213 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 214 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 215 | |||
| 216 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 217 | |||
| 218 | #if LCD_IO_MODE | ||
| 219 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 220 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 221 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 222 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 223 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 224 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 225 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 226 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 227 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 228 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 229 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 230 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 231 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 232 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 233 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 234 | #endif | ||
| 235 | */ | ||
| 236 | |||
| 237 | /* Bootmagic Lite key configuration */ | 209 | /* Bootmagic Lite key configuration */ |
| 238 | // #define BOOTMAGIC_LITE_ROW 0 | 210 | // #define BOOTMAGIC_LITE_ROW 0 |
| 239 | // #define BOOTMAGIC_LITE_COLUMN 0 | 211 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd67/rev1/rules.mk b/keyboards/kbdfans/kbd67/rev1/rules.mk index 8e96199b3..5ba40c0e7 100644 --- a/keyboards/kbdfans/kbd67/rev1/rules.mk +++ b/keyboards/kbdfans/kbd67/rev1/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = 65_ansi | 34 | LAYOUTS = 65_ansi |
diff --git a/keyboards/kbdfans/kbd67/rev2/keymaps/tucznak/rules.mk b/keyboards/kbdfans/kbd67/rev2/keymaps/tucznak/rules.mk index 277af2b17..a46023d86 100644 --- a/keyboards/kbdfans/kbd67/rev2/keymaps/tucznak/rules.mk +++ b/keyboards/kbdfans/kbd67/rev2/keymaps/tucznak/rules.mk | |||
| @@ -14,7 +14,6 @@ UNICODE_ENABLE = no # Unicode | |||
| 14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 15 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
| 16 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 16 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 17 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
| 18 | 17 | ||
| 19 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 18 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 20 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend \ No newline at end of file | 19 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend \ No newline at end of file |
diff --git a/keyboards/kbdfans/kbd67/rev2/rules.mk b/keyboards/kbdfans/kbd67/rev2/rules.mk index de55438dd..bc9b38283 100644 --- a/keyboards/kbdfans/kbd67/rev2/rules.mk +++ b/keyboards/kbdfans/kbd67/rev2/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = 65_ansi 65_iso 65_ansi_blocker 65_ansi_blocker_split_bs | 34 | LAYOUTS = 65_ansi 65_iso 65_ansi_blocker 65_ansi_blocker_split_bs |
diff --git a/keyboards/kbdfans/kbd6x/config.h b/keyboards/kbdfans/kbd6x/config.h index 03c4aaaea..8d3d45626 100644 --- a/keyboards/kbdfans/kbd6x/config.h +++ b/keyboards/kbdfans/kbd6x/config.h | |||
| @@ -193,30 +193,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 193 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 193 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 194 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 194 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 195 | 195 | ||
| 196 | /* | ||
| 197 | * HD44780 LCD Display Configuration | ||
| 198 | */ | ||
| 199 | /* | ||
| 200 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 201 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 202 | |||
| 203 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 204 | |||
| 205 | #if LCD_IO_MODE | ||
| 206 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 207 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 208 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 209 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 210 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 211 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 212 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 213 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 214 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 215 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 216 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 217 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 218 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 219 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 220 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 221 | #endif | ||
| 222 | */ | ||
diff --git a/keyboards/kbdfans/kbd6x/keymaps/othi/rules.mk b/keyboards/kbdfans/kbd6x/keymaps/othi/rules.mk index 9cda4109d..20d0ca208 100644 --- a/keyboards/kbdfans/kbd6x/keymaps/othi/rules.mk +++ b/keyboards/kbdfans/kbd6x/keymaps/othi/rules.mk | |||
| @@ -14,6 +14,5 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | |||
| 14 | RGBLIGHT_ENABLE = yes | 14 | RGBLIGHT_ENABLE = yes |
| 15 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
| 16 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 16 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 17 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
| 18 | TAP_DANCE_ENABLE=yes | 17 | TAP_DANCE_ENABLE=yes |
| 19 | 18 | ||
diff --git a/keyboards/kbdfans/kbd6x/rules.mk b/keyboards/kbdfans/kbd6x/rules.mk index ca46832c1..fae8f1424 100644 --- a/keyboards/kbdfans/kbd6x/rules.mk +++ b/keyboards/kbdfans/kbd6x/rules.mk | |||
| @@ -30,4 +30,3 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | |||
| 30 | RGBLIGHT_ENABLE = yes | 30 | RGBLIGHT_ENABLE = yes |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
diff --git a/keyboards/kbdfans/kbd8x_mk2/config.h b/keyboards/kbdfans/kbd8x_mk2/config.h index 373646a8e..9585e230e 100644 --- a/keyboards/kbdfans/kbd8x_mk2/config.h +++ b/keyboards/kbdfans/kbd8x_mk2/config.h | |||
| @@ -218,34 +218,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 220 | 220 | ||
| 221 | /* | ||
| 222 | * HD44780 LCD Display Configuration | ||
| 223 | */ | ||
| 224 | /* | ||
| 225 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 226 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 227 | |||
| 228 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 229 | |||
| 230 | #if LCD_IO_MODE | ||
| 231 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 232 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 233 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 234 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 235 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 236 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 237 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 238 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 239 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 240 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 241 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 242 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 243 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 244 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 245 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 246 | #endif | ||
| 247 | */ | ||
| 248 | |||
| 249 | /* Bootmagic Lite key configuration */ | 221 | /* Bootmagic Lite key configuration */ |
| 250 | // #define BOOTMAGIC_LITE_ROW 0 | 222 | // #define BOOTMAGIC_LITE_ROW 0 |
| 251 | // #define BOOTMAGIC_LITE_COLUMN 0 | 223 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd8x_mk2/rules.mk b/keyboards/kbdfans/kbd8x_mk2/rules.mk index 97261becd..c5f1e2866 100644 --- a/keyboards/kbdfans/kbd8x_mk2/rules.mk +++ b/keyboards/kbdfans/kbd8x_mk2/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = tkl_ansi tkl_iso | 34 | LAYOUTS = tkl_ansi tkl_iso |
diff --git a/keyboards/kbdfans/kbdmini/rules.mk b/keyboards/kbdfans/kbdmini/rules.mk index 28178d658..0fd579c40 100644 --- a/keyboards/kbdfans/kbdmini/rules.mk +++ b/keyboards/kbdfans/kbdmini/rules.mk | |||
| @@ -29,5 +29,6 @@ UNICODE_ENABLE = no # Unicode | |||
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 32 | RGB_MATRIX_ENABLE = IS31FL3733 # Use RGB matrix | 32 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
| 33 | RGB_MATRIX_DRIVER = IS31FL3733 | ||
| 33 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in | 34 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in |
diff --git a/keyboards/kbdfans/kbdpad_mk2/config.h b/keyboards/kbdfans/kbdpad_mk2/config.h index 991475c10..b3de693d9 100644 --- a/keyboards/kbdfans/kbdpad_mk2/config.h +++ b/keyboards/kbdfans/kbdpad_mk2/config.h | |||
| @@ -217,34 +217,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 217 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 217 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 218 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 218 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 219 | 219 | ||
| 220 | /* | ||
| 221 | * HD44780 LCD Display Configuration | ||
| 222 | */ | ||
| 223 | /* | ||
| 224 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 225 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 226 | |||
| 227 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 228 | |||
| 229 | #if LCD_IO_MODE | ||
| 230 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 231 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 232 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 233 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 234 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 235 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 236 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 237 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 238 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 239 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 240 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 241 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 242 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 243 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 244 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 245 | #endif | ||
| 246 | */ | ||
| 247 | |||
| 248 | /* Bootmagic Lite key configuration */ | 220 | /* Bootmagic Lite key configuration */ |
| 249 | // #define BOOTMAGIC_LITE_ROW 0 | 221 | // #define BOOTMAGIC_LITE_ROW 0 |
| 250 | // #define BOOTMAGIC_LITE_COLUMN 0 | 222 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbdpad_mk2/rules.mk b/keyboards/kbdfans/kbdpad_mk2/rules.mk index 0b86b5904..c53ca99ee 100644 --- a/keyboards/kbdfans/kbdpad_mk2/rules.mk +++ b/keyboards/kbdfans/kbdpad_mk2/rules.mk | |||
| @@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | 33 | ||
| 35 | LAYOUTS = ortho_6x4 | 34 | LAYOUTS = ortho_6x4 |
diff --git a/keyboards/kbdfans/maja/rules.mk b/keyboards/kbdfans/maja/rules.mk index 2b097c3d4..47fe6a92f 100755 --- a/keyboards/kbdfans/maja/rules.mk +++ b/keyboards/kbdfans/maja/rules.mk | |||
| @@ -30,4 +30,5 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | |||
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 32 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 32 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
| 33 | RGB_MATRIX_DRIVER = IS31FL3731 | ||
| 33 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in | 34 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in |
