diff options
Diffstat (limited to 'keyboards/helix/pico/matrix.c')
-rw-r--r-- | keyboards/helix/pico/matrix.c | 6 |
1 files changed, 0 insertions, 6 deletions
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) | |||
202 | }else{ | 202 | }else{ |
203 | matrix_slave_scan(); | 203 | matrix_slave_scan(); |
204 | 204 | ||
205 | // if(serial_slave_DATA_CORRUPT()){ | ||
206 | // TXLED0; | ||
207 | int offset = (isLeftHand) ? ROWS_PER_HAND : 0; | 205 | int offset = (isLeftHand) ? ROWS_PER_HAND : 0; |
208 | 206 | ||
209 | for (int i = 0; i < ROWS_PER_HAND; ++i) { | 207 | for (int i = 0; i < ROWS_PER_HAND; ++i) { |
210 | matrix[offset+i] = serial_master_buffer[i]; | 208 | matrix[offset+i] = serial_master_buffer[i]; |
211 | } | 209 | } |
212 | 210 | ||
213 | // }else{ | ||
214 | // TXLED1; | ||
215 | // } | ||
216 | |||
217 | matrix_scan_quantum(); | 211 | matrix_scan_quantum(); |
218 | } | 212 | } |
219 | return 1; | 213 | return 1; |