diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-08-16 17:51:53 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-08-16 17:51:53 -0400 |
commit | b3f638f491601d4a849995fb4fa1181c9ff4341a (patch) | |
tree | 2faf8bda68233a28abba86429c948d6fd841ef03 /keyboard/planck/matrix_pcb.c | |
parent | 07d090db8ba5a3be15ec6c8ecf9e30815a48b0c0 (diff) |
ok
Diffstat (limited to 'keyboard/planck/matrix_pcb.c')
-rw-r--r-- | keyboard/planck/matrix_pcb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/keyboard/planck/matrix_pcb.c b/keyboard/planck/matrix_pcb.c index 7d46baf3de..48510cd833 100644 --- a/keyboard/planck/matrix_pcb.c +++ b/keyboard/planck/matrix_pcb.c @@ -23,13 +23,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <stdbool.h> #include <avr/io.h> #include <util/delay.h> -#include "print.h" +// #include "print.h" #include "debug.h" #include "util.h" #include "matrix.h" #include "backlight.h" // TODO fix this dependency - #ifndef DEBOUNCE # define DEBOUNCE 10 #endif @@ -67,7 +66,7 @@ void matrix_init(void) // Turn status LED on DDRE |= (1<<6); PORTE |= (1<<6); - + // initialize row and col unselect_rows(); init_cols(); |