remove noop comments

pull/18/head
Jesse Vincent 10 years ago
parent 79f6cf931b
commit 854582eff4

@ -100,9 +100,9 @@ void scan_matrix()
//If we see an electrical connection on I->J,
if (digitalRead(colPins[col])) {
matrixState[row][col] |= 0; // noop. just here for clarity
matrixState[row][col] |= 0;
} else {
matrixState[row][col] |= 1; // noop. just here for clarity
matrixState[row][col] |= 1;
}
// while we're inspecting the electrical matrix, we look
// to see if the Key being held is a firmware level

Loading…
Cancel
Save