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/noxary | |
| 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/noxary')
| -rw-r--r-- | keyboards/noxary/220/config.h | 28 | ||||
| -rw-r--r-- | keyboards/noxary/260/config.h | 28 | ||||
| -rw-r--r-- | keyboards/noxary/260/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/noxary/268_2/config.h | 28 | ||||
| -rw-r--r-- | keyboards/noxary/268_2/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/noxary/280/config.h | 28 | ||||
| -rw-r--r-- | keyboards/noxary/280/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/noxary/x268/config.h | 28 | ||||
| -rw-r--r-- | keyboards/noxary/x268/rules.mk | 1 |
9 files changed, 0 insertions, 144 deletions
diff --git a/keyboards/noxary/220/config.h b/keyboards/noxary/220/config.h index 757113807..5e371a4e7 100644 --- a/keyboards/noxary/220/config.h +++ b/keyboards/noxary/220/config.h | |||
| @@ -188,34 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 190 | 190 | ||
| 191 | /* | ||
| 192 | * HD44780 LCD Display Configuration | ||
| 193 | */ | ||
| 194 | /* | ||
| 195 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 196 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 197 | |||
| 198 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 199 | |||
| 200 | #if LCD_IO_MODE | ||
| 201 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 202 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 203 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 204 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 205 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 206 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 207 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 208 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 209 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 210 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 211 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 212 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 213 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 214 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 215 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 216 | #endif | ||
| 217 | */ | ||
| 218 | |||
| 219 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
| 220 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
| 221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/260/config.h b/keyboards/noxary/260/config.h index 9876d09f4..f3f0cbc38 100644 --- a/keyboards/noxary/260/config.h +++ b/keyboards/noxary/260/config.h | |||
| @@ -221,34 +221,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 221 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 221 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 222 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 222 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 223 | 223 | ||
| 224 | /* | ||
| 225 | * HD44780 LCD Display Configuration | ||
| 226 | */ | ||
| 227 | /* | ||
| 228 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 229 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 230 | |||
| 231 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 232 | |||
| 233 | #if LCD_IO_MODE | ||
| 234 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 235 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 236 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 237 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 238 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 239 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 240 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 241 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 242 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 243 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 244 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 245 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 246 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 247 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 248 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 249 | #endif | ||
| 250 | */ | ||
| 251 | |||
| 252 | /* Bootmagic Lite key configuration */ | 224 | /* Bootmagic Lite key configuration */ |
| 253 | // #define BOOTMAGIC_LITE_ROW 0 | 225 | // #define BOOTMAGIC_LITE_ROW 0 |
| 254 | // #define BOOTMAGIC_LITE_COLUMN 0 | 226 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/260/rules.mk b/keyboards/noxary/260/rules.mk index f17a6c17d..093a70906 100644 --- a/keyboards/noxary/260/rules.mk +++ b/keyboards/noxary/260/rules.mk | |||
| @@ -30,7 +30,6 @@ 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 | EXTRAFLAGS += -flto | 33 | EXTRAFLAGS += -flto |
| 35 | 34 | ||
| 36 | LAYOUTS = 60_ansi 60_iso 60_hhkb 60_tsangan_hhkb | 35 | LAYOUTS = 60_ansi 60_iso 60_hhkb 60_tsangan_hhkb |
diff --git a/keyboards/noxary/268_2/config.h b/keyboards/noxary/268_2/config.h index 1d6681595..6adcc9552 100644 --- a/keyboards/noxary/268_2/config.h +++ b/keyboards/noxary/268_2/config.h | |||
| @@ -190,34 +190,6 @@ 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 | */ | ||
| 220 | |||
| 221 | /* Bootmagic Lite key configuration */ | 193 | /* Bootmagic Lite key configuration */ |
| 222 | // #define BOOTMAGIC_LITE_ROW 0 | 194 | // #define BOOTMAGIC_LITE_ROW 0 |
| 223 | // #define BOOTMAGIC_LITE_COLUMN 0 | 195 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/268_2/rules.mk b/keyboards/noxary/268_2/rules.mk index 168d3a2c1..1533c2977 100644 --- a/keyboards/noxary/268_2/rules.mk +++ b/keyboards/noxary/268_2/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 | 34 | LAYOUTS = 65_ansi_blocker |
diff --git a/keyboards/noxary/280/config.h b/keyboards/noxary/280/config.h index 0fe012173..a1bacd3dc 100644 --- a/keyboards/noxary/280/config.h +++ b/keyboards/noxary/280/config.h | |||
| @@ -189,34 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 189 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 189 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 190 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 190 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 191 | 191 | ||
| 192 | /* | ||
| 193 | * HD44780 LCD Display Configuration | ||
| 194 | */ | ||
| 195 | /* | ||
| 196 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 197 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 198 | |||
| 199 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 200 | |||
| 201 | #if LCD_IO_MODE | ||
| 202 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 203 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 204 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 205 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 206 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 207 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 208 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 209 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 210 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 211 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 212 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 213 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 214 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 215 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 216 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 217 | #endif | ||
| 218 | */ | ||
| 219 | |||
| 220 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
| 221 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
| 222 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/280/rules.mk b/keyboards/noxary/280/rules.mk index e75034e26..70902339e 100644 --- a/keyboards/noxary/280/rules.mk +++ b/keyboards/noxary/280/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/noxary/x268/config.h b/keyboards/noxary/x268/config.h index c342da505..f6dae0b3f 100644 --- a/keyboards/noxary/x268/config.h +++ b/keyboards/noxary/x268/config.h | |||
| @@ -192,34 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 192 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 192 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 193 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 193 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 194 | 194 | ||
| 195 | /* | ||
| 196 | * HD44780 LCD Display Configuration | ||
| 197 | */ | ||
| 198 | /* | ||
| 199 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 200 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 201 | |||
| 202 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 203 | |||
| 204 | #if LCD_IO_MODE | ||
| 205 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 206 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 207 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 208 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 209 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 210 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 211 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 212 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 213 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 214 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 215 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 216 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 217 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 218 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 219 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 220 | #endif | ||
| 221 | */ | ||
| 222 | |||
| 223 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
| 224 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
| 225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/x268/rules.mk b/keyboards/noxary/x268/rules.mk index c4b8c2117..b7e5eb668 100644 --- a/keyboards/noxary/x268/rules.mk +++ b/keyboards/noxary/x268/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 | ||
