Wait for two ticks rather than 1

This commit is contained in:
Kaleb Elwert 2017-01-10 03:00:36 -08:00
parent 0b38204e62
commit a55c5e3ea3
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ uint8_t matrix_scan(void)
case 8: palSetPad(GPIOC, 11); break;
}
wait_us(10); // need wait to settle pin state
wait_us(20); // need wait to settle pin state
// read col data: { PTD0, PTD1, PTD4, PTD5, PTD6, PTD7, PTC1, PTC2 }
data = ((palReadPort(GPIOC) & 0x06UL) << 5) |