Fix pin configuration error(macway). issue #17

This commit is contained in:
tmk 2012-11-25 20:41:23 +09:00
parent 94b4fba6e6
commit b6e07aa85d
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}