mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
Fix pin configuration error(macway). issue #17
This commit is contained in:
parent
94b4fba6e6
commit
b6e07aa85d
1 changed files with 2 additions and 2 deletions
|
@ -217,9 +217,9 @@ static void unselect_rows(void)
|
||||||
{
|
{
|
||||||
// Hi-Z(DDR:0, PORT:0) to unselect
|
// Hi-Z(DDR:0, PORT:0) to unselect
|
||||||
DDRC &= ~0b01000000; // PC: 6
|
DDRC &= ~0b01000000; // PC: 6
|
||||||
PORTC &= ~0b11000000;
|
PORTC &= ~0b01000000;
|
||||||
DDRD &= ~0b11100111; // PD: 7,6,5,2,1,0
|
DDRD &= ~0b11100111; // PD: 7,6,5,2,1,0
|
||||||
PORTD &= ~0b11000111;
|
PORTD &= ~0b11100111;
|
||||||
DDRF &= ~0b11000000; // PF: 7,6
|
DDRF &= ~0b11000000; // PF: 7,6
|
||||||
PORTF &= ~0b11000000;
|
PORTF &= ~0b11000000;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue