aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/helix
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-11-04 09:35:43 +1100
committerJoel Challis <git@zvecr.com>2019-11-03 22:35:43 +0000
commit363cdb5fc00519a4eb45a4401b93451949c59d6a (patch)
tree8d5c1eb4938d162e3db353775ba42c0c7fe14e8a /keyboards/helix
parentbe6562a22335b85e9904c0f7cc748943c9e809a7 (diff)
downloadfirmware-363cdb5fc00519a4eb45a4401b93451949c59d6a.tar.gz
firmware-363cdb5fc00519a4eb45a4401b93451949c59d6a.tar.bz2
firmware-363cdb5fc00519a4eb45a4401b93451949c59d6a.zip
Remove duplicate pro_micro.h (#7246)
Diffstat (limited to 'keyboards/helix')
-rw-r--r--keyboards/helix/local_drivers/serial.c1
-rw-r--r--keyboards/helix/pico/matrix.c6
2 files changed, 0 insertions, 7 deletions
diff --git a/keyboards/helix/local_drivers/serial.c b/keyboards/helix/local_drivers/serial.c
index 6006ebf1b..674c42d59 100644
--- a/keyboards/helix/local_drivers/serial.c
+++ b/keyboards/helix/local_drivers/serial.c
@@ -17,7 +17,6 @@
#include <stddef.h>
#include <stdbool.h>
#include "serial.h"
-//#include <pro_micro.h>
#ifdef SOFT_SERIAL_PIN
diff --git a/keyboards/helix/pico/matrix.c b/keyboards/helix/pico/matrix.c
index aba55da7c..c2940e3b3 100644
--- a/keyboards/helix/pico/matrix.c
+++ b/keyboards/helix/pico/matrix.c
@@ -202,18 +202,12 @@ uint8_t matrix_scan(void)
}else{
matrix_slave_scan();
-// if(serial_slave_DATA_CORRUPT()){
-// TXLED0;
int offset = (isLeftHand) ? ROWS_PER_HAND : 0;
for (int i = 0; i < ROWS_PER_HAND; ++i) {
matrix[offset+i] = serial_master_buffer[i];
}
-// }else{
-// TXLED1;
-// }
-
matrix_scan_quantum();
}
return 1;