aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/ferris/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/ferris/config.h')
-rw-r--r--keyboards/handwired/ferris/config.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/keyboards/handwired/ferris/config.h b/keyboards/handwired/ferris/config.h
new file mode 100644
index 000000000..33494d927
--- /dev/null
+++ b/keyboards/handwired/ferris/config.h
@@ -0,0 +1,60 @@
1/*
2Copyright 2020 Pierre Chevalier <pierrechevalier83@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20/* USB Device descriptor parameter */
21#define VENDOR_ID 0xC2AB
22#define PRODUCT_ID 0x0000
23#define DEVICE_VER 0x0001
24#define MANUFACTURER Pierre
25#define PRODUCT Ferris the keeb
26#define DESCRIPTION A minimalistic 34 - keys split keyboard
27
28/* key matrix size */
29#define MATRIX_ROWS 8
30#define MATRIX_COLS 10
31
32#define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
33#define MATRIX_COLS_PER_SIDE (MATRIX_COLS / 2)
34
35#define UNUSED_MCU 14
36#define UNUSED_MCP 7
37
38// wiring
39#define MATRIX_ROW_PINS_MCU \
40 { B3, B2, B1, F0 }
41#define MATRIX_COL_PINS_MCU \
42 { D6, D7, B4, B5, B6 }
43#define UNUSED_PINS_MCU \
44 { B0, B7, C6, C7, D2, D3, D4, D5, E6, F1, F4, F5, F6, F7 }
45#define MATRIX_ROW_PINS_MCP \
46 { B0, B1, B2, B3 }
47#define MATRIX_COL_PINS_MCP \
48 { A0, A1, A2, A3, A4 }
49#define UNUSED_PINS_MCP \
50 { B4, B5, B6, B7, A5, A6, A7 }
51
52/* COL2ROW, ROW2COL*/
53#define DIODE_DIRECTION COL2ROW
54
55/* define if matrix has ghost (lacks anti-ghosting diodes) */
56//#define MATRIX_HAS_GHOST
57
58/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
59#define DEBOUNCE 5
60