aboutsummaryrefslogtreecommitdiff
path: root/keyboards/coseyfannitutti
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2020-08-07 02:06:14 -0700
committerGitHub <noreply@github.com>2020-08-07 02:06:14 -0700
commit4e8af9d41bb5122a398bc8f768bc3931c8aaf9a4 (patch)
tree2b12452e684e1992f1680e15e3495ea26214323c /keyboards/coseyfannitutti
parent871d35aa432f149b67d986b584bb31b80bd1573e (diff)
downloadqmk_firmware-4e8af9d41bb5122a398bc8f768bc3931c8aaf9a4.tar.gz
qmk_firmware-4e8af9d41bb5122a398bc8f768bc3931c8aaf9a4.zip
Remove HD44780 References, Part 2 (#9918)
* remove HD44780_ENABLE rules: C-F * remove HD44780_ENABLE config: C-F
Diffstat (limited to 'keyboards/coseyfannitutti')
-rw-r--r--keyboards/coseyfannitutti/discipad/config.h28
-rw-r--r--keyboards/coseyfannitutti/discipad/rules.mk1
-rw-r--r--keyboards/coseyfannitutti/discipline/config.h28
-rw-r--r--keyboards/coseyfannitutti/discipline/rules.mk1
-rw-r--r--keyboards/coseyfannitutti/mullet/config.h27
-rw-r--r--keyboards/coseyfannitutti/mullet/rules.mk1
-rw-r--r--keyboards/coseyfannitutti/mulletpad/config.h27
-rw-r--r--keyboards/coseyfannitutti/mulletpad/rules.mk1
-rw-r--r--keyboards/coseyfannitutti/mysterium/config.h28
-rw-r--r--keyboards/coseyfannitutti/mysterium/rules.mk1
-rw-r--r--keyboards/coseyfannitutti/romeo/config.h28
-rw-r--r--keyboards/coseyfannitutti/romeo/rules.mk1
12 files changed, 0 insertions, 172 deletions
diff --git a/keyboards/coseyfannitutti/discipad/config.h b/keyboards/coseyfannitutti/discipad/config.h
index 34776fcbd..035a0ac18 100644
--- a/keyboards/coseyfannitutti/discipad/config.h
+++ b/keyboards/coseyfannitutti/discipad/config.h
@@ -215,34 +215,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
215/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 215/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
216//#define MIDI_TONE_KEYCODE_OCTAVES 1 216//#define MIDI_TONE_KEYCODE_OCTAVES 1
217 217
218/*
219 * HD44780 LCD Display Configuration
220 */
221/*
222#define LCD_LINES 2 //< number of visible lines of the display
223#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
224
225#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
226
227#if LCD_IO_MODE
228#define LCD_PORT PORTB //< port for the LCD lines
229#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
230#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
231#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
232#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
233#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
234#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
235#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
236#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
237#define LCD_RS_PORT LCD_PORT //< port for RS line
238#define LCD_RS_PIN 3 //< pin for RS line
239#define LCD_RW_PORT LCD_PORT //< port for RW line
240#define LCD_RW_PIN 2 //< pin for RW line
241#define LCD_E_PORT LCD_PORT //< port for Enable line
242#define LCD_E_PIN 1 //< pin for Enable line
243#endif
244*/
245
246/* Bootmagic Lite key configuration */ 218/* Bootmagic Lite key configuration */
247#define BOOTMAGIC_LITE_ROW 0 219#define BOOTMAGIC_LITE_ROW 0
248#define BOOTMAGIC_LITE_COLUMN 0 220#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/coseyfannitutti/discipad/rules.mk b/keyboards/coseyfannitutti/discipad/rules.mk
index cc81604a4..62d60ef29 100644
--- a/keyboards/coseyfannitutti/discipad/rules.mk
+++ b/keyboards/coseyfannitutti/discipad/rules.mk
@@ -30,4 +30,3 @@ UNICODE_ENABLE = no # Unicode
30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
31AUDIO_ENABLE = no # Audio output on port C6 31AUDIO_ENABLE = no # Audio output on port C6
32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
33HD44780_ENABLE = no # Enable support for HD44780 based LCDs
diff --git a/keyboards/coseyfannitutti/discipline/config.h b/keyboards/coseyfannitutti/discipline/config.h
index 5d2430908..aba1ecaf2 100644
--- a/keyboards/coseyfannitutti/discipline/config.h
+++ b/keyboards/coseyfannitutti/discipline/config.h
@@ -213,34 +213,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
213/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 213/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
214//#define MIDI_TONE_KEYCODE_OCTAVES 1 214//#define MIDI_TONE_KEYCODE_OCTAVES 1
215 215
216/*
217 * HD44780 LCD Display Configuration
218 */
219/*
220#define LCD_LINES 2 //< number of visible lines of the display
221#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
222
223#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
224
225#if LCD_IO_MODE
226#define LCD_PORT PORTB //< port for the LCD lines
227#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
228#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
229#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
230#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
231#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
232#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
233#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
234#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
235#define LCD_RS_PORT LCD_PORT //< port for RS line
236#define LCD_RS_PIN 3 //< pin for RS line
237#define LCD_RW_PORT LCD_PORT //< port for RW line
238#define LCD_RW_PIN 2 //< pin for RW line
239#define LCD_E_PORT LCD_PORT //< port for Enable line
240#define LCD_E_PIN 1 //< pin for Enable line
241#endif
242*/
243
244/* Bootmagic Lite key configuration */ 216/* Bootmagic Lite key configuration */
245#define BOOTMAGIC_LITE_ROW 0 217#define BOOTMAGIC_LITE_ROW 0
246#define BOOTMAGIC_LITE_COLUMN 0 218#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/coseyfannitutti/discipline/rules.mk b/keyboards/coseyfannitutti/discipline/rules.mk
index f556cb1d4..81997e7fd 100644
--- a/keyboards/coseyfannitutti/discipline/rules.mk
+++ b/keyboards/coseyfannitutti/discipline/rules.mk
@@ -33,6 +33,5 @@ UNICODE_ENABLE = no # Unicode
33BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 33BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
34AUDIO_ENABLE = no # Audio output on port C6 34AUDIO_ENABLE = no # Audio output on port C6
35FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 35FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
36HD44780_ENABLE = no # Enable support for HD44780 based LCDs
37 36
38LAYOUTS = 65_ansi 65_ansi_blocker 65_iso 65_iso_blocker 37LAYOUTS = 65_ansi 65_ansi_blocker 65_iso 65_iso_blocker
diff --git a/keyboards/coseyfannitutti/mullet/config.h b/keyboards/coseyfannitutti/mullet/config.h
index f9aef2911..56460ce0b 100644
--- a/keyboards/coseyfannitutti/mullet/config.h
+++ b/keyboards/coseyfannitutti/mullet/config.h
@@ -142,30 +142,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
142/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 142/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
143//#define MIDI_TONE_KEYCODE_OCTAVES 1 143//#define MIDI_TONE_KEYCODE_OCTAVES 1
144 144
145/*
146 * HD44780 LCD Display Configuration
147 */
148/*
149#define LCD_LINES 2 //< number of visible lines of the display
150#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
151
152#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
153
154#if LCD_IO_MODE
155#define LCD_PORT PORTB //< port for the LCD lines
156#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
157#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
158#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
159#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
160#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
161#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
162#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
163#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
164#define LCD_RS_PORT LCD_PORT //< port for RS line
165#define LCD_RS_PIN 3 //< pin for RS line
166#define LCD_RW_PORT LCD_PORT //< port for RW line
167#define LCD_RW_PIN 2 //< pin for RW line
168#define LCD_E_PORT LCD_PORT //< port for Enable line
169#define LCD_E_PIN 1 //< pin for Enable line
170#endif
171*/
diff --git a/keyboards/coseyfannitutti/mullet/rules.mk b/keyboards/coseyfannitutti/mullet/rules.mk
index b42558a30..7bed2f555 100644
--- a/keyboards/coseyfannitutti/mullet/rules.mk
+++ b/keyboards/coseyfannitutti/mullet/rules.mk
@@ -30,4 +30,3 @@ UNICODE_ENABLE = no # Unicode
30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
31AUDIO_ENABLE = no # Audio output on port C6 31AUDIO_ENABLE = no # Audio output on port C6
32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
33HD44780_ENABLE = no # Enable support for HD44780 based LCDs
diff --git a/keyboards/coseyfannitutti/mulletpad/config.h b/keyboards/coseyfannitutti/mulletpad/config.h
index 4e25ec033..a977be705 100644
--- a/keyboards/coseyfannitutti/mulletpad/config.h
+++ b/keyboards/coseyfannitutti/mulletpad/config.h
@@ -142,30 +142,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
142/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 142/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
143//#define MIDI_TONE_KEYCODE_OCTAVES 1 143//#define MIDI_TONE_KEYCODE_OCTAVES 1
144 144
145/*
146 * HD44780 LCD Display Configuration
147 */
148/*
149#define LCD_LINES 2 //< number of visible lines of the display
150#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
151
152#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
153
154#if LCD_IO_MODE
155#define LCD_PORT PORTB //< port for the LCD lines
156#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
157#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
158#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
159#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
160#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
161#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
162#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
163#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
164#define LCD_RS_PORT LCD_PORT //< port for RS line
165#define LCD_RS_PIN 3 //< pin for RS line
166#define LCD_RW_PORT LCD_PORT //< port for RW line
167#define LCD_RW_PIN 2 //< pin for RW line
168#define LCD_E_PORT LCD_PORT //< port for Enable line
169#define LCD_E_PIN 1 //< pin for Enable line
170#endif
171*/
diff --git a/keyboards/coseyfannitutti/mulletpad/rules.mk b/keyboards/coseyfannitutti/mulletpad/rules.mk
index 1b9994cd3..0418bb9aa 100644
--- a/keyboards/coseyfannitutti/mulletpad/rules.mk
+++ b/keyboards/coseyfannitutti/mulletpad/rules.mk
@@ -30,6 +30,5 @@ UNICODE_ENABLE = no # Unicode
30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
31AUDIO_ENABLE = no # Audio output on port C6 31AUDIO_ENABLE = no # Audio output on port C6
32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
33HD44780_ENABLE = no # Enable support for HD44780 based LCDs
34 33
35LAYOUTS = numpad_5x4 34LAYOUTS = numpad_5x4
diff --git a/keyboards/coseyfannitutti/mysterium/config.h b/keyboards/coseyfannitutti/mysterium/config.h
index 968794da9..245eaab35 100644
--- a/keyboards/coseyfannitutti/mysterium/config.h
+++ b/keyboards/coseyfannitutti/mysterium/config.h
@@ -211,34 +211,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
211/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 211/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
212//#define MIDI_TONE_KEYCODE_OCTAVES 1 212//#define MIDI_TONE_KEYCODE_OCTAVES 1
213 213
214/*
215 * HD44780 LCD Display Configuration
216 */
217/*
218#define LCD_LINES 2 //< number of visible lines of the display
219#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
220
221#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
222
223#if LCD_IO_MODE
224#define LCD_PORT PORTB //< port for the LCD lines
225#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
226#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
227#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
228#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
229#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
230#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
231#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
232#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
233#define LCD_RS_PORT LCD_PORT //< port for RS line
234#define LCD_RS_PIN 3 //< pin for RS line
235#define LCD_RW_PORT LCD_PORT //< port for RW line
236#define LCD_RW_PIN 2 //< pin for RW line
237#define LCD_E_PORT LCD_PORT //< port for Enable line
238#define LCD_E_PIN 1 //< pin for Enable line
239#endif
240*/
241
242/* Bootmagic Lite key configuration */ 214/* Bootmagic Lite key configuration */
243#define BOOTMAGIC_LITE_ROW 0 215#define BOOTMAGIC_LITE_ROW 0
244#define BOOTMAGIC_LITE_COLUMN 0 216#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/coseyfannitutti/mysterium/rules.mk b/keyboards/coseyfannitutti/mysterium/rules.mk
index 9628ac713..a55742628 100644
--- a/keyboards/coseyfannitutti/mysterium/rules.mk
+++ b/keyboards/coseyfannitutti/mysterium/rules.mk
@@ -33,6 +33,5 @@ UNICODE_ENABLE = no # Unicode
33BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 33BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
34AUDIO_ENABLE = no # Audio output on port C6 34AUDIO_ENABLE = no # Audio output on port C6
35FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 35FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
36HD44780_ENABLE = no # Enable support for HD44780 based LCDs
37 36
38LAYOUTS = tkl_ansi 37LAYOUTS = tkl_ansi
diff --git a/keyboards/coseyfannitutti/romeo/config.h b/keyboards/coseyfannitutti/romeo/config.h
index 49226ebfa..a70d539ef 100644
--- a/keyboards/coseyfannitutti/romeo/config.h
+++ b/keyboards/coseyfannitutti/romeo/config.h
@@ -214,34 +214,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
214/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 214/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
215//#define MIDI_TONE_KEYCODE_OCTAVES 1 215//#define MIDI_TONE_KEYCODE_OCTAVES 1
216 216
217/*
218 * HD44780 LCD Display Configuration
219 */
220/*
221#define LCD_LINES 2 //< number of visible lines of the display
222#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
223
224#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
225
226#if LCD_IO_MODE
227#define LCD_PORT PORTB //< port for the LCD lines
228#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
229#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
230#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
231#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
232#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
233#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
234#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
235#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
236#define LCD_RS_PORT LCD_PORT //< port for RS line
237#define LCD_RS_PIN 3 //< pin for RS line
238#define LCD_RW_PORT LCD_PORT //< port for RW line
239#define LCD_RW_PIN 2 //< pin for RW line
240#define LCD_E_PORT LCD_PORT //< port for Enable line
241#define LCD_E_PIN 1 //< pin for Enable line
242#endif
243*/
244
245/* Bootmagic Lite key configuration 217/* Bootmagic Lite key configuration
246#define BOOTMAGIC_LITE_ROW 0 218#define BOOTMAGIC_LITE_ROW 0
247#define BOOTMAGIC_LITE_COLUMN 0 219#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/coseyfannitutti/romeo/rules.mk b/keyboards/coseyfannitutti/romeo/rules.mk
index 154f66369..ee79d15ac 100644
--- a/keyboards/coseyfannitutti/romeo/rules.mk
+++ b/keyboards/coseyfannitutti/romeo/rules.mk
@@ -30,4 +30,3 @@ UNICODE_ENABLE = no # Unicode
30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 30BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
31AUDIO_ENABLE = no # Audio output on port C6 31AUDIO_ENABLE = no # Audio output on port C6
32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
33HD44780_ENABLE = no # Enable support for HD44780 based LCDs