mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-30 21:02:32 +01:00 
			
		
		
		
	Remove HD44780 References, Part 3 (#10238)
* remove HD44780_ENABLE rules: G-H * remove HD44780_ENABLE config: G-H
This commit is contained in:
		
							parent
							
								
									088888937a
								
							
						
					
					
						commit
						78d5224a1d
					
				| @ -207,34 +207,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -213,30 +213,3 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
|  | ||||
| @ -33,6 +33,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| CUSTOM_MATRIX = lite | ||||
|  | ||||
| @ -17,4 +17,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -33,4 +33,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -18,7 +18,6 @@ UNICODEMAP_ENABLE = no      # Enable extended unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| #VARIABLE_TRACE = no         # Use this to debug changes to variable values
 | ||||
| API_SYSEX_ENABLE = no       # This enables using the Quantum SYSEX API to send strings | ||||
| KEY_LOCK_ENABLE = no        # This enables key lock | ||||
|  | ||||
| @ -33,4 +33,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -211,34 +211,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LAYOUTS = 65_ansi_blocker 65_iso_blocker | ||||
|  | ||||
| @ -30,7 +30,6 @@ UNICODE_ENABLE = no          # Unicode | ||||
| BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no            # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no          # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LTO_ENABLE = yes | ||||
| 
 | ||||
|  | ||||
| @ -30,7 +30,6 @@ UNICODE_ENABLE = no          # Unicode | ||||
| BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no            # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no          # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LTO_ENABLE = yes | ||||
| 
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -188,34 +188,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| PS2_MOUSE_ENABLE = yes | ||||
| PS2_USE_USART = yes | ||||
|  | ||||
| @ -165,30 +165,3 @@ | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
|  | ||||
| @ -29,6 +29,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| 
 | ||||
| LAYOUTS = ortho_4x16 | ||||
|  | ||||
| @ -31,7 +31,6 @@ RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow | ||||
| MIDI_ENABLE = no            # MIDI support | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| UNICODE_ENABLE = no         # Unicode | ||||
| UNICODEMAP_ENABLE = no      # ^^ | ||||
|  | ||||
| @ -31,4 +31,3 @@ UNICODE_ENABLE = yes        # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -29,5 +29,4 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| UNICODE_ENABLE = no        # Unicode | ||||
|  | ||||
| @ -229,34 +229,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = yes          # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LAYOUTS = planck_mit | ||||
| @ -33,5 +33,4 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH = AdafruitBLE       # Enable Bluetooth | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
| ENCODER_ENABLE = no | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| @ -24,7 +24,6 @@ CONSOLE_ENABLE = no | ||||
| DEBUG_ENABLE = no | ||||
| EXTRAKEY_ENABLE = no | ||||
| FAUXCLICKY_ENABLE = no | ||||
| HD44780_ENABLE = no | ||||
| LEADER_ENABLE = no | ||||
| MIDI_ENABLE = no | ||||
| MOUSEKEY_ENABLE = yes | ||||
|  | ||||
| @ -29,7 +29,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| LTO_ENABLE = no             # Use link time optimization | ||||
| RGB_MATRIX_ENABLE = WS2812  # Enable keyboard RGB backlight functionality with ws2812 driver | ||||
| RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow | ||||
|  | ||||
| @ -218,34 +218,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -218,34 +218,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -19,5 +19,4 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| LAYOUTS = ortho_4x12 | ||||
|  | ||||
| @ -215,34 +215,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| NO_USB_STARTUP_CHECK = yes  # Disable initialization only when usb is plugged in | ||||
| BLUETOOTH = RN42 | ||||
|  | ||||
| @ -229,34 +229,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = yes          # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LAYOUTS = planck_mit | ||||
|  | ||||
| @ -216,30 +216,3 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| ENCODER_ENABLE = yes | ||||
| RGB_MATRIX_ENABLE = WS2812 | ||||
|  | ||||
| @ -192,31 +192,3 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -29,5 +29,4 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| RGB_MATRIX_ENABLE = WS2812 | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -221,34 +221,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,5 +29,4 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| SPLIT_KEYBOARD = yes        # Enable split keyboard support | ||||
|  | ||||
| @ -212,34 +212,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -29,5 +29,4 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| UNICODE_ENABLE = no         # Unicode | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            	# MIDI support | ||||
| BLUETOOTH_ENABLE = no       	# Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           	# Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      	# Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         	# Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -17,7 +17,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs (+400) | ||||
| 
 | ||||
| DEFAULT_FOLDER = handwired/onekey/promicro | ||||
| LAYOUTS = ortho_1x1 | ||||
|  | ||||
| @ -217,34 +217,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,7 +30,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| CUSTOM_MATRIX = yes | ||||
| OLED_DRIVER_ENABLE = no | ||||
| 
 | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -30,4 +30,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -26,4 +26,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -26,4 +26,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -220,34 +220,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,6 +29,5 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| 
 | ||||
| LAYOUTS = 65_ansi | ||||
|  | ||||
| @ -34,4 +34,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH = AdafruitBLE | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -216,34 +216,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -30,7 +30,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| LTO_ENABLE = yes            # Use link time optimization | ||||
| 
 | ||||
| LAYOUTS = ortho_5x14 | ||||
|  | ||||
| @ -207,34 +207,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| //#define BOOTMAGIC_LITE_ROW 0
 | ||||
| //#define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
|  | ||||
| @ -220,34 +220,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -19,7 +19,6 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| PS2_MOUSE_ENABLE = no | ||||
| 
 | ||||
| USE_CHIBIOS_CONTRIB = yes | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -18,6 +18,5 @@ MIDI_ENABLE = no            # MIDI support (+2400 to 4200, depending on config) | ||||
| UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs (+400) | ||||
| NO_SUSPEND_POWER_DOWN = yes | ||||
| UNICODEMAP_ENABLE = no | ||||
|  | ||||
| @ -207,34 +207,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -30,5 +30,4 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
| SPLIT_KEYBOARD = yes | ||||
|  | ||||
| @ -30,7 +30,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
| SPLIT_KEYBOARD = yes | ||||
| 
 | ||||
| DEFAULT_FOLDER = hecomi/alpha | ||||
|  | ||||
| @ -212,34 +212,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -30,6 +30,5 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
| CUSTOM_MATRIX = lite | ||||
| SRC += matrix.c | ||||
|  | ||||
| @ -30,4 +30,3 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no 		# Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -218,34 +218,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -208,34 +208,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||||
| //#define MIDI_TONE_KEYCODE_OCTAVES 1
 | ||||
| 
 | ||||
| /*
 | ||||
|  * HD44780 LCD Display Configuration | ||||
|  */ | ||||
| /*
 | ||||
| #define LCD_LINES           2     //< number of visible lines of the display
 | ||||
| #define LCD_DISP_LENGTH    16     //< visibles characters per line of the display
 | ||||
| 
 | ||||
| #define LCD_IO_MODE      1            //< 0: memory mapped mode, 1: IO port mode
 | ||||
| 
 | ||||
| #if LCD_IO_MODE | ||||
| #define LCD_PORT         PORTB        //< port for the LCD lines
 | ||||
| #define LCD_DATA0_PORT   LCD_PORT     //< port for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PORT   LCD_PORT     //< port for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PORT   LCD_PORT     //< port for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PORT   LCD_PORT     //< port for 4bit data bit 3
 | ||||
| #define LCD_DATA0_PIN    4            //< pin for 4bit data bit 0
 | ||||
| #define LCD_DATA1_PIN    5            //< pin for 4bit data bit 1
 | ||||
| #define LCD_DATA2_PIN    6            //< pin for 4bit data bit 2
 | ||||
| #define LCD_DATA3_PIN    7            //< pin for 4bit data bit 3
 | ||||
| #define LCD_RS_PORT      LCD_PORT     //< port for RS line
 | ||||
| #define LCD_RS_PIN       3            //< pin  for RS line
 | ||||
| #define LCD_RW_PORT      LCD_PORT     //< port for RW line
 | ||||
| #define LCD_RW_PIN       2            //< pin  for RW line
 | ||||
| #define LCD_E_PORT       LCD_PORT     //< port for Enable line
 | ||||
| #define LCD_E_PIN        1            //< pin  for Enable line
 | ||||
| #endif | ||||
| */ | ||||
| 
 | ||||
| /* Bootmagic Lite key configuration */ | ||||
| // #define BOOTMAGIC_LITE_ROW 0
 | ||||
| // #define BOOTMAGIC_LITE_COLUMN 0
 | ||||
|  | ||||
| @ -29,4 +29,3 @@ MIDI_ENABLE = no            # MIDI support | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
|  | ||||
| @ -31,7 +31,6 @@ UNICODE_ENABLE = no         # Unicode | ||||
| BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||
| AUDIO_ENABLE = no           # Audio output on port C6 | ||||
| FAUXCLICKY_ENABLE = no      # Use buzzer to emulate clicky switches | ||||
| HD44780_ENABLE = no         # Enable support for HD44780 based LCDs | ||||
| ENCODER_ENABLE = yes        # Rotary Encoder support | ||||
| TAP_DANCE_ENABLE = yes      # Support for tap dancing | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 James Young
						James Young