aboutsummaryrefslogtreecommitdiff
path: root/keyboards/centromere/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/centromere/config.h')
-rw-r--r--keyboards/centromere/config.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/keyboards/centromere/config.h b/keyboards/centromere/config.h
new file mode 100644
index 000000000..e502e2534
--- /dev/null
+++ b/keyboards/centromere/config.h
@@ -0,0 +1,67 @@
1/*
2Copyright 2012 Jun Wako <[email protected]>
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#include "config_common.h"
21
22/* USB Device descriptor parameter */
23
24#define VENDOR_ID 0xFEED
25#define PRODUCT_ID 0x6060
26#define DEVICE_VER 0x0001
27#define MANUFACTURER Southpaw Design
28#define PRODUCT centromere
29
30/* key matrix size */
31#define MATRIX_ROWS 5
32#define MATRIX_COLS 10
33
34/* define if matrix has ghost */
35//#define MATRIX_HAS_GHOST
36
37/* number of backlight levels */
38//#define BACKLIGHT_LEVELS 3
39
40#define ONESHOT_TIMEOUT 500
41
42/*
43 * Feature disable options
44 * These options are also useful to firmware size reduction.
45 */
46
47/* disable debug print */
48//#define NO_DEBUG
49
50/* disable print */
51//#define NO_PRINT
52
53/* disable action features */
54//#define NO_ACTION_LAYER
55//#define NO_ACTION_TAPPING
56//#define NO_ACTION_ONESHOT
57//#define NO_ACTION_MACRO
58//#define NO_ACTION_FUNCTION
59
60//UART settings for communication with the RF microcontroller
61#define SERIAL_UART_BAUD 500000
62#define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1))
63#define SERIAL_UART_INIT_CUSTOM \
64 /* enable TX and RX */ \
65 UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
66 /* 8-bit data */ \
67 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);