aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/georgi
diff options
context:
space:
mode:
authorErez Zukerman <bulk@ezuk.org>2019-05-15 19:53:45 -0400
committerJack Humbert <jack.humb@gmail.com>2019-05-15 19:53:45 -0400
commit8680c50d07604836b0fc7c3f97bd77c7830ea083 (patch)
treecbb99eeebb8976ed63f2960237f6b51726370bbf /keyboards/georgi
parent8bcefc92d0b1494b890dae3f41516acf831f539c (diff)
downloadfirmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.tar.gz
firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.tar.bz2
firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.zip
Removes Erez personally from QMK (#5883)
Diffstat (limited to 'keyboards/georgi')
-rw-r--r--keyboards/georgi/matrix.c10
1 files changed, 3 insertions, 7 deletions
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 @@
/*
-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 <cub.uanic@gmail.com>
@@ -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
@@ -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;