aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergotaco
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/ergotaco
parent8bcefc92d0b1494b890dae3f41516acf831f539c (diff)
downloadfirmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.tar.gz
firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.tar.bz2
firmware-8680c50d07604836b0fc7c3f97bd77c7830ea083.zip
Removes Erez personally from QMK (#5883)
Diffstat (limited to 'keyboards/ergotaco')
-rw-r--r--keyboards/ergotaco/matrix.c12
1 files changed, 4 insertions, 8 deletions
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 @@
/*
-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>
@@ -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
@@ -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;