Merge pull request #4458 from drashna/ergodox_ez_matrix_fix

Fix Ergodox EZ Matrix scan
This commit is contained in:
Erez Zukerman 2018-11-22 10:50:20 -05:00 committed by GitHub
commit b7dd415c97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -379,7 +379,7 @@ static void select_row(uint8_t row)
break;
case 11:
DDRD |= (1<<2);
PORTD &= ~(1<<3);
PORTD &= ~(1<<2);
break;
case 12:
DDRD |= (1<<3);
@ -392,4 +392,3 @@ static void select_row(uint8_t row)
}
}
}