]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/honeycomb/config.h
[Keyboard] fixed pins for numpad_5x4 layout (#6311)
[qmk_firmware.git] / keyboards / honeycomb / config.h
1 /*
2 Copyright 2019 @filoxo
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along 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      0xACC8
26 #define DEVICE_VER      0x0001
27 #define MANUFACTURER    Keyhive
28 #define PRODUCT         Honeycomb Macropad
29 #define DESCRIPTION     QMK firmware for Honeycomb Macropad
30
31 /* key matrix size */
32 #define MATRIX_ROWS 1
33 #define MATRIX_COLS 16
34
35 #define ONESHOT_TIMEOUT 500
36
37 /* disable debug print */
38 //#define NO_DEBUG
39
40 /* disable print */
41 //#define NO_PRINT
42
43 /* disable action features */
44 //#define NO_ACTION_LAYER
45 //#define NO_ACTION_TAPPING
46 //#define NO_ACTION_ONESHOT
47 //#define NO_ACTION_MACRO
48 //#define NO_ACTION_FUNCTION
49
50 //UART settings for communication with the RF microcontroller
51 #define SERIAL_UART_BAUD 1000000
52 #define SERIAL_UART_DATA UDR1
53 #define SERIAL_UART_UBRR (F_CPU / (16UL * SERIAL_UART_BAUD) - 1)
54 #define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1))
55 #define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1))
56 #define SERIAL_UART_INIT() do { \
57   /* baud rate */ \
58   UBRR1L = SERIAL_UART_UBRR; \
59   /* baud rate */ \
60   UBRR1H = SERIAL_UART_UBRR >> 8; \
61   /* enable TX and RX */ \
62   UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
63   /* 8-bit data */ \
64   UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); \
65 } while(0)