Skip to content

Commit

Permalink
Fix pin configuration error(macway). issue tmk#17
Browse files Browse the repository at this point in the history
  • Loading branch information
yashikno committed Nov 25, 2012
1 parent 94b4fba commit b6e07aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboard/macway/matrix.c
Expand Up @@ -217,9 +217,9 @@ static void unselect_rows(void)
{
// Hi-Z(DDR:0, PORT:0) to unselect
DDRC &= ~0b01000000; // PC: 6
PORTC &= ~0b11000000;
PORTC &= ~0b01000000;
DDRD &= ~0b11100111; // PD: 7,6,5,2,1,0
PORTD &= ~0b11000111;
PORTD &= ~0b11100111;
DDRF &= ~0b11000000; // PF: 7,6
PORTF &= ~0b11000000;
}
Expand Down

0 comments on commit b6e07aa

Please sign in to comment.