Browse Source

Fix row 11

pull/4458/head
Drashna Jaelre 5 years ago
parent
commit
8837b9d99e
No known key found for this signature in database GPG Key ID: 4C4221222CD5F9F0
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      keyboards/ergodox_ez/matrix.c

+ 1
- 2
keyboards/ergodox_ez/matrix.c 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)
}
}
}

Loading…
Cancel
Save