Skip to content

Commit

Permalink
Removes Erez personally from QMK (qmk#5883)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezuk authored and jackhumbert committed May 15, 2019
1 parent 8bcefc9 commit 8680c50
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 338 deletions.
2 changes: 1 addition & 1 deletion keyboards/ergodox_ez/info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"keyboard_name": "ErgoDox EZ",
"url": "ergodox-ez.com",
"maintainer": "erez",
"maintainer": "ZSA",
"width": 17,
"height": 8,

Expand Down
12 changes: 4 additions & 8 deletions keyboards/ergodox_ez/matrix.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
/*
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
Expand Down Expand Up @@ -95,7 +91,7 @@ void matrix_init(void) {
// initialize matrix state: all keys off
for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
matrix[i] = 0;
raw_matrix[i] = 0;
raw_matrix[i] = 0;
}

#ifdef DEBUG_MATRIX_SCAN_RATE
Expand Down Expand Up @@ -168,7 +164,7 @@ uint8_t matrix_scan(void) {
#ifdef LEFT_LEDS
mcp23018_status = ergodox_left_leds_update();
#endif // LEFT_LEDS
bool changed = false;
bool changed = false;
for (uint8_t i = 0; i < MATRIX_ROWS_PER_SIDE; i++) {
// select rows from left and right hands
uint8_t left_index = i;
Expand All @@ -178,13 +174,13 @@ uint8_t matrix_scan(void) {

// we don't need a 30us delay anymore, because selecting a
// left-hand row requires more than 30us for i2c.

changed |= store_raw_matrix_row(left_index);
changed |= store_raw_matrix_row(right_index);

unselect_rows();
}

debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
matrix_scan_quantum();

Expand Down
12 changes: 4 additions & 8 deletions keyboards/ergotaco/matrix.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
/*
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
Expand Down Expand Up @@ -226,8 +222,8 @@ uint8_t matrix_scan(void)
matrix_scan_quantum();

#ifdef DEBUG_MATRIX
for (uint8_t c = 0; c < MATRIX_COLS; c++)
for (uint8_t r = 0; r < MATRIX_ROWS; r++)
for (uint8_t c = 0; c < MATRIX_COLS; c++)
for (uint8_t r = 0; r < MATRIX_ROWS; r++)
if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c);
#endif

Expand Down Expand Up @@ -324,10 +320,10 @@ static void unselect_rows(void)
static void select_row(uint8_t row)
{
if (row < 6) {
// select on mcp23018
// select on mcp23018
if (mcp23018_status) { // do nothing on error
// Read using bitmask
} else { // set active row low : 0 // set other rows hi-Z : 1
} else { // set active row low : 0 // set other rows hi-Z : 1
mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
mcp23018_status = i2c_write(~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
Expand Down
10 changes: 3 additions & 7 deletions keyboards/georgi/matrix.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
/*
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
Expand Down Expand Up @@ -248,8 +244,8 @@ uint8_t matrix_scan(void)
matrix_scan_quantum();

#ifdef DEBUG_MATRIX
for (uint8_t c = 0; c < MATRIX_COLS; c++)
for (uint8_t r = 0; r < MATRIX_ROWS; r++)
for (uint8_t c = 0; c < MATRIX_COLS; c++)
for (uint8_t r = 0; r < MATRIX_ROWS; r++)
if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c);
#endif

Expand Down Expand Up @@ -359,7 +355,7 @@ static void select_row(uint8_t row)
if (row < 7) {
// select on mcp23018
if (mcp23018_status) { // do nothing on error
} else { // set active row low : 0 // set other rows hi-Z : 1
} else { // set active row low : 0 // set other rows hi-Z : 1
mcp23018_status = i2c_start(I2C_ADDR_WRITE, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
mcp23018_status = i2c_write(GPIOA, ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
mcp23018_status = i2c_write(0xFF & ~(1<<row), ERGODOX_EZ_I2C_TIMEOUT); if (mcp23018_status) goto out;
Expand Down
4 changes: 0 additions & 4 deletions keyboards/gergo/matrix.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
/*
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
Expand Down
5 changes: 0 additions & 5 deletions keyboards/handwired/frenchdev/matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ The "column" and "row" in here actually refers to the opposite on the keyboard
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
Nicolas
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
Copyright 2013 Nicolas Poirey <[email protected]>
Expand Down
15 changes: 7 additions & 8 deletions keyboards/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ QMK runs on a diverse range of keyboards. Some of these keyboards are officially

## Official QMK Keyboards

These keyboards are manufactured by the maintainers of QMK.

### Ortholinear Keyboards - Jack Humbert

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.
Expand All @@ -13,12 +11,6 @@ What makes OLKB keyboards shine is a combo of lean aesthetics, compact size, and
* [Preonic](/keyboards/preonic/) &mdash; Like the Planck, but bigger. 50%.
* [Atomic](/keyboards/atomic/) &mdash; Imagine the size of the Planck. Now imagine the size of the Preonic. Now imagine _bigger_. That is the Atomic. A 60% keyboard.

### ErgoDox EZ - Erez Zukerman

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).

* [ErgoDox EZ](/keyboards/ergodox_ez/) &mdash; Our one and only product. Yes, it's that awesome. Comes with either printed or blank keycaps, and 7 different keyswitch types.

### Clueboard - Zach White

Designed and built in Felton, CA, Clueboards keyboard emphasize quality and locally sourced components, available on [clueboard.co](http://clueboard.co)
Expand All @@ -27,6 +19,13 @@ Designed and built in Felton, CA, Clueboards keyboard emphasize quality and loca
* [Cluecard](/keyboards/clueboard/card/) &mdash; A small board to help you hack on QMK.
* [Cluepad](/keyboards/clueboard/17/) &mdash; A mechanical numpad with QMK superpowers.

### ErgoDox EZ and Planck EZ - ZSA Technology Labs

[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:

* [ErgoDox EZ](/keyboards/ergodox_ez/) &mdash; A powerful split mechanical keyboard.
* [Planck EZ](/keyboards/planck/ez) &mdash; 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.


## Community-supported QMK Keyboards

Expand Down
5 changes: 0 additions & 5 deletions keyboards/sixkeyboard/matrix.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
/*
Note for ErgoDox EZ customizers: Here be dragons!
This is not a file you want to be messing with.
All of the interesting stuff for you is under keymaps/ :)
Love, Erez
Copyright 2013 Oleg Kostyuk <[email protected]>
This program is free software: you can redistribute it and/or modify
Expand Down
13 changes: 0 additions & 13 deletions layouts/community/ergodox/erez_experimental/config.h

This file was deleted.

Loading

0 comments on commit 8680c50

Please sign in to comment.