summaryrefslogtreecommitdiff
path: root/keyboards/helix
diff options
context:
space:
mode:
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 6006ebf1bd..674c42d593 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 aba55da7c8..c2940e3b3e 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;