blob: 9eea5216e987a3ae72a123ddbe4f245ab58ff312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
/* key matrix size */
// Rows are doubled-up
#define MATRIX_ROWS 10
#define MATRIX_COLS 8
/* Set 0 if debouncing isn't needed */
#define DEBOUNCE 5
/* serial.c configuration for split keyboard */
#define SOFT_SERIAL_PIN D0
|