aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/whitefox/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/whitefox/matrix.c b/keyboards/whitefox/matrix.c
index d69b82d61..9202ab023 100644
--- a/keyboards/whitefox/matrix.c
+++ b/keyboards/whitefox/matrix.c
@@ -69,7 +69,7 @@ uint8_t matrix_scan(void)
69 case 8: palSetPad(GPIOC, 11); break; 69 case 8: palSetPad(GPIOC, 11); break;
70 } 70 }
71 71
72 wait_us(10); // need wait to settle pin state 72 wait_us(20); // need wait to settle pin state
73 73
74 // read col data: { PTD0, PTD1, PTD4, PTD5, PTD6, PTD7, PTC1, PTC2 } 74 // read col data: { PTD0, PTD1, PTD4, PTD5, PTD6, PTD7, PTC1, PTC2 }
75 data = ((palReadPort(GPIOC) & 0x06UL) << 5) | 75 data = ((palReadPort(GPIOC) & 0x06UL) << 5) |