From 3fb816b89b9490c36ab68eb5c1d2a8c2018d17fc Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Tue, 26 Jan 2016 00:04:16 -0800 Subject: [PATCH] whitespace --- KeyboardioFirmware.ino | 9 --------- 1 file changed, 9 deletions(-) diff --git a/KeyboardioFirmware.ino b/KeyboardioFirmware.ino index 0060180e..1233a2a5 100644 --- a/KeyboardioFirmware.ino +++ b/KeyboardioFirmware.ino @@ -19,11 +19,6 @@ - - - - - void set_keymap(Key keymapEntry, byte matrixStateEntry) { if (keymapEntry.flags & SWITCH_TO_KEYMAP) { // this logic sucks. there is a better way TODO this @@ -65,11 +60,8 @@ void scan_matrix() { for (byte col = 0; col < LEFT_COLS; col++) { TS("Scanning col") - - matrixState[row][col] = implementation_scan_left_col(row,col,matrixState[row][col]); matrixState[row][(COLS - 1) - col] = implementation_scan_right_col(row,col,matrixState[row][(COLS - 1) - col]); - // while we're inspecting the electrical matrix, we look // to see if the Key being held is a firmware level // metakey, so we can act on it, lest we only discover @@ -95,7 +87,6 @@ void scan_matrix() { // Command mode // - void setup() { wdt_disable(); Serial.begin(115200);