diff options
| author | Erez Zukerman <bulk@ezuk.org> | 2019-05-15 19:53:45 -0400 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2019-05-15 19:53:45 -0400 |
| commit | 8680c50d07604836b0fc7c3f97bd77c7830ea083 (patch) | |
| tree | cbb99eeebb8976ed63f2960237f6b51726370bbf /keyboards | |
| parent | 8bcefc92d0b1494b890dae3f41516acf831f539c (diff) | |
| download | qmk_firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.tar.gz qmk_firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.zip | |
Removes Erez personally from QMK (#5883)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/ergodox_ez/info.json | 2 | ||||
| -rw-r--r-- | keyboards/ergodox_ez/matrix.c | 12 | ||||
| -rw-r--r-- | keyboards/ergotaco/matrix.c | 12 | ||||
| -rw-r--r-- | keyboards/georgi/matrix.c | 10 | ||||
| -rw-r--r-- | keyboards/gergo/matrix.c | 4 | ||||
| -rw-r--r-- | keyboards/handwired/frenchdev/matrix.c | 5 | ||||
| -rw-r--r-- | keyboards/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/sixkeyboard/matrix.c | 5 |
8 files changed, 19 insertions, 46 deletions
diff --git a/keyboards/ergodox_ez/info.json b/keyboards/ergodox_ez/info.json index 6f7a94157..e543206fe 100644 --- a/keyboards/ergodox_ez/info.json +++ b/keyboards/ergodox_ez/info.json | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | { | 1 | { |
| 2 | "keyboard_name": "ErgoDox EZ", | 2 | "keyboard_name": "ErgoDox EZ", |
| 3 | "url": "ergodox-ez.com", | 3 | "url": "ergodox-ez.com", |
| 4 | "maintainer": "erez", | 4 | "maintainer": "ZSA", |
| 5 | "width": 17, | 5 | "width": 17, |
| 6 | "height": 8, | 6 | "height": 8, |
| 7 | 7 | ||
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index 6f604ae2b..2bfe27b9a 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c | |||
| @@ -1,9 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | 2 | ||
| 3 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 4 | This is not a file you want to be messing with. | ||
| 5 | All of the interesting stuff for you is under keymaps/ :) | ||
| 6 | Love, Erez | ||
| 7 | 3 | ||
| 8 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 4 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 9 | 5 | ||
| @@ -95,7 +91,7 @@ void matrix_init(void) { | |||
| 95 | // initialize matrix state: all keys off | 91 | // initialize matrix state: all keys off |
| 96 | for (uint8_t i = 0; i < MATRIX_ROWS; i++) { | 92 | for (uint8_t i = 0; i < MATRIX_ROWS; i++) { |
| 97 | matrix[i] = 0; | 93 | matrix[i] = 0; |
| 98 | raw_matrix[i] = 0; | 94 | raw_matrix[i] = 0; |
| 99 | } | 95 | } |
| 100 | 96 | ||
| 101 | #ifdef DEBUG_MATRIX_SCAN_RATE | 97 | #ifdef DEBUG_MATRIX_SCAN_RATE |
| @@ -168,7 +164,7 @@ uint8_t matrix_scan(void) { | |||
| 168 | #ifdef LEFT_LEDS | 164 | #ifdef LEFT_LEDS |
| 169 | mcp23018_status = ergodox_left_leds_update(); | 165 | mcp23018_status = ergodox_left_leds_update(); |
| 170 | #endif // LEFT_LEDS | 166 | #endif // LEFT_LEDS |
| 171 | bool changed = false; | 167 | bool changed = false; |
| 172 | for (uint8_t i = 0; i < MATRIX_ROWS_PER_SIDE; i++) { | 168 | for (uint8_t i = 0; i < MATRIX_ROWS_PER_SIDE; i++) { |
| 173 | // select rows from left and right hands | 169 | // select rows from left and right hands |
| 174 | uint8_t left_index = i; | 170 | uint8_t left_index = i; |
| @@ -178,13 +174,13 @@ uint8_t matrix_scan(void) { | |||
| 178 | 174 | ||
| 179 | // we don't need a 30us delay anymore, because selecting a | 175 | // we don't need a 30us delay anymore, because selecting a |
| 180 | // left-hand row requires more than 30us for i2c. | 176 | // left-hand row requires more than 30us for i2c. |
| 181 | 177 | ||
| 182 | changed |= store_raw_matrix_row(left_index); | 178 | changed |= store_raw_matrix_row(left_index); |
| 183 | changed |= store_raw_matrix_row(right_index); | 179 | changed |= store_raw_matrix_row(right_index); |
| 184 | 180 | ||
| 185 | unselect_rows(); | 181 | unselect_rows(); |
| 186 | } | 182 | } |
| 187 | 183 | ||
| 188 | debounce(raw_matrix, matrix, MATRIX_ROWS, changed); | 184 | debounce(raw_matrix, matrix, MATRIX_ROWS, changed); |
| 189 | matrix_scan_quantum(); | 185 | matrix_scan_quantum(); |
| 190 | 186 | ||
diff --git a/keyboards/ergotaco/matrix.c b/keyboards/ergotaco/matrix.c index e4fd6902f..f7ceb194a 100644 --- a/keyboards/ergotaco/matrix.c +++ b/keyboards/ergotaco/matrix.c | |||
| @@ -1,8 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 3 | This is not a file you want to be messing with. | ||
| 4 | All of the interesting stuff for you is under keymaps/ :) | ||
| 5 | Love, Erez | ||
| 6 | 2 | ||
| 7 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 3 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 8 | 4 | ||
| @@ -226,8 +222,8 @@ uint8_t matrix_scan(void) | |||
| 226 | matrix_scan_quantum(); | 222 | matrix_scan_quantum(); |
| 227 | 223 | ||
| 228 | #ifdef DEBUG_MATRIX | 224 | #ifdef DEBUG_MATRIX |
| 229 | for (uint8_t c = 0; c < MATRIX_COLS; c++) | 225 | for (uint8_t c = 0; c < MATRIX_COLS; c++) |
| 230 | for (uint8_t r = 0; r < MATRIX_ROWS; r++) | 226 | for (uint8_t r = 0; r < MATRIX_ROWS; r++) |
| 231 | if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c); | 227 | if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c); |
| 232 | #endif | 228 | #endif |
| 233 | 229 | ||
| @@ -324,10 +320,10 @@ static void unselect_rows(void) | |||
| 324 | static void select_row(uint8_t row) | 320 | static void select_row(uint8_t row) |
| 325 | { | 321 | { |
| 326 | if (row < 6) { | 322 | if (row < 6) { |
| 327 | // select on mcp23018 | 323 | // select on mcp23018 |
| 328 | if (mcp23018_status) { // do nothing on error | 324 | if (mcp23018_status) { // do nothing on error |
| 329 | // Read using bitmask | 325 | // Read using bitmask |
| 330 | } else { // set active row low : 0 // set other rows hi-Z : 1 | 326 | } else { // set active row low : 0 // set other rows hi-Z : 1 |
| 331 | mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 327 | mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
| 332 | mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 328 | mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
| 333 | mcp23018_status = i2c_write(~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 329 | mcp23018_status = i2c_write(~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
diff --git a/keyboards/georgi/matrix.c b/keyboards/georgi/matrix.c index 22079ac61..58f0776c4 100644 --- a/keyboards/georgi/matrix.c +++ b/keyboards/georgi/matrix.c | |||
| @@ -1,8 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 3 | This is not a file you want to be messing with. | ||
| 4 | All of the interesting stuff for you is under keymaps/ :) | ||
| 5 | Love, Erez | ||
| 6 | 2 | ||
| 7 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 3 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 8 | 4 | ||
| @@ -248,8 +244,8 @@ uint8_t matrix_scan(void) | |||
| 248 | matrix_scan_quantum(); | 244 | matrix_scan_quantum(); |
| 249 | 245 | ||
| 250 | #ifdef DEBUG_MATRIX | 246 | #ifdef DEBUG_MATRIX |
| 251 | for (uint8_t c = 0; c < MATRIX_COLS; c++) | 247 | for (uint8_t c = 0; c < MATRIX_COLS; c++) |
| 252 | for (uint8_t r = 0; r < MATRIX_ROWS; r++) | 248 | for (uint8_t r = 0; r < MATRIX_ROWS; r++) |
| 253 | if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c); | 249 | if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c); |
| 254 | #endif | 250 | #endif |
| 255 | 251 | ||
| @@ -359,7 +355,7 @@ static void select_row(uint8_t row) | |||
| 359 | if (row < 7) { | 355 | if (row < 7) { |
| 360 | // select on mcp23018 | 356 | // select on mcp23018 |
| 361 | if (mcp23018_status) { // do nothing on error | 357 | if (mcp23018_status) { // do nothing on error |
| 362 | } else { // set active row low : 0 // set other rows hi-Z : 1 | 358 | } else { // set active row low : 0 // set other rows hi-Z : 1 |
| 363 | mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 359 | mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
| 364 | mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 360 | mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
| 365 | mcp23018_status = i2c_write(0xFF & ~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; | 361 | mcp23018_status = i2c_write(0xFF & ~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out; |
diff --git a/keyboards/gergo/matrix.c b/keyboards/gergo/matrix.c index 234160326..9ef1f6b5c 100644 --- a/keyboards/gergo/matrix.c +++ b/keyboards/gergo/matrix.c | |||
| @@ -1,8 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 3 | This is not a file you want to be messing with. | ||
| 4 | All of the interesting stuff for you is under keymaps/ :) | ||
| 5 | Love, Erez | ||
| 6 | 2 | ||
| 7 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 3 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 8 | 4 | ||
diff --git a/keyboards/handwired/frenchdev/matrix.c b/keyboards/handwired/frenchdev/matrix.c index 4263555e9..26c2b3126 100644 --- a/keyboards/handwired/frenchdev/matrix.c +++ b/keyboards/handwired/frenchdev/matrix.c | |||
| @@ -5,11 +5,6 @@ The "column" and "row" in here actually refers to the opposite on the keyboard | |||
| 5 | see definition of KEYMAP in v1.h, the grid is transposed so that a "row" in here is actually a "column" on the physical keyboard | 5 | see definition of KEYMAP in v1.h, the grid is transposed so that a "row" in here is actually a "column" on the physical keyboard |
| 6 | Nicolas | 6 | Nicolas |
| 7 | 7 | ||
| 8 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 9 | This is not a file you want to be messing with. | ||
| 10 | All of the interesting stuff for you is under keymaps/ :) | ||
| 11 | Love, Erez | ||
| 12 | |||
| 13 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 8 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 14 | Copyright 2013 Nicolas Poirey <nicolas.poirey@gmail.com> | 9 | Copyright 2013 Nicolas Poirey <nicolas.poirey@gmail.com> |
| 15 | 10 | ||
diff --git a/keyboards/readme.md b/keyboards/readme.md index 81284755f..8b6e40721 100644 --- a/keyboards/readme.md +++ b/keyboards/readme.md | |||
| @@ -3,8 +3,6 @@ QMK runs on a diverse range of keyboards. Some of these keyboards are officially | |||
| 3 | 3 | ||
| 4 | ## Official QMK Keyboards | 4 | ## Official QMK Keyboards |
| 5 | 5 | ||
| 6 | These keyboards are manufactured by the maintainers of QMK. | ||
| 7 | |||
| 8 | ### Ortholinear Keyboards - Jack Humbert | 6 | ### Ortholinear Keyboards - Jack Humbert |
| 9 | 7 | ||
| 10 | What makes OLKB keyboards shine is a combo of lean aesthetics, compact size, and killer tactile feel. These are available through [olkb.com](http://olkb.com) as well as through [Massdrop](http://massdrop.com) from time to time, as easy to assemble kits. | 8 | What makes OLKB keyboards shine is a combo of lean aesthetics, compact size, and killer tactile feel. These are available through [olkb.com](http://olkb.com) as well as through [Massdrop](http://massdrop.com) from time to time, as easy to assemble kits. |
| @@ -13,12 +11,6 @@ What makes OLKB keyboards shine is a combo of lean aesthetics, compact size, and | |||
| 13 | * [Preonic](/keyboards/preonic/) — Like the Planck, but bigger. 50%. | 11 | * [Preonic](/keyboards/preonic/) — Like the Planck, but bigger. 50%. |
| 14 | * [Atomic](/keyboards/atomic/) — Imagine the size of the Planck. Now imagine the size of the Preonic. Now imagine _bigger_. That is the Atomic. A 60% keyboard. | 12 | * [Atomic](/keyboards/atomic/) — Imagine the size of the Planck. Now imagine the size of the Preonic. Now imagine _bigger_. That is the Atomic. A 60% keyboard. |
| 15 | 13 | ||
| 16 | ### ErgoDox EZ - Erez Zukerman | ||
| 17 | |||
| 18 | Made in Taiwan using advanced robotic manufacturing, the ErgoDox EZ is a fully-assembled, premium ergonomic keyboard. Its split design allows you to place both halves shoulder width, and its custom-made wrist rests and tilt/tent kit make for incredibly comfortable typing. Available on [ergodox-ez.com](https://ergodox-ez.com). | ||
| 19 | |||
| 20 | * [ErgoDox EZ](/keyboards/ergodox_ez/) — Our one and only product. Yes, it's that awesome. Comes with either printed or blank keycaps, and 7 different keyswitch types. | ||
| 21 | |||
| 22 | ### Clueboard - Zach White | 14 | ### Clueboard - Zach White |
| 23 | 15 | ||
| 24 | Designed and built in Felton, CA, Clueboards keyboard emphasize quality and locally sourced components, available on [clueboard.co](http://clueboard.co) | 16 | Designed and built in Felton, CA, Clueboards keyboard emphasize quality and locally sourced components, available on [clueboard.co](http://clueboard.co) |
| @@ -27,6 +19,13 @@ Designed and built in Felton, CA, Clueboards keyboard emphasize quality and loca | |||
| 27 | * [Cluecard](/keyboards/clueboard/card/) — A small board to help you hack on QMK. | 19 | * [Cluecard](/keyboards/clueboard/card/) — A small board to help you hack on QMK. |
| 28 | * [Cluepad](/keyboards/clueboard/17/) — A mechanical numpad with QMK superpowers. | 20 | * [Cluepad](/keyboards/clueboard/17/) — A mechanical numpad with QMK superpowers. |
| 29 | 21 | ||
| 22 | ### ErgoDox EZ and Planck EZ - ZSA Technology Labs | ||
| 23 | |||
| 24 | [ZSA Technology Labs](https://ergodox-ez.com) maintains its own [fork of QMK](https://github.com/zsa/qmk_firmware) which feeds its [configurator](https://configure.ergodox-ez.com), for stability and legal purposes. The ZSA boards are: | ||
| 25 | |||
| 26 | * [ErgoDox EZ](/keyboards/ergodox_ez/) — A powerful split mechanical keyboard. | ||
| 27 | * [Planck EZ](/keyboards/planck/ez) — A 40% DIY powerhouse of customizability and modification capability. It's a lean, mean, typing machine, which ships fully assembled with a two-year warranty. | ||
| 28 | |||
| 30 | 29 | ||
| 31 | ## Community-supported QMK Keyboards | 30 | ## Community-supported QMK Keyboards |
| 32 | 31 | ||
diff --git a/keyboards/sixkeyboard/matrix.c b/keyboards/sixkeyboard/matrix.c index 860452ebd..64b46e9b0 100644 --- a/keyboards/sixkeyboard/matrix.c +++ b/keyboards/sixkeyboard/matrix.c | |||
| @@ -1,10 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | 2 | ||
| 3 | Note for ErgoDox EZ customizers: Here be dragons! | ||
| 4 | This is not a file you want to be messing with. | ||
| 5 | All of the interesting stuff for you is under keymaps/ :) | ||
| 6 | Love, Erez | ||
| 7 | |||
| 8 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> | 3 | Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> |
| 9 | 4 | ||
| 10 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
