You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.6 KiB

  1. /*
  2. Copyright 2018 Carlos Filoteo
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef CONFIG_H
  15. #define CONFIG_H
  16. #include "config_common.h"
  17. /* USB Device descriptor parameter */
  18. #define VENDOR_ID 0xFEED
  19. #define PRODUCT_ID 0x0000
  20. #define DEVICE_VER 0x0001
  21. #define MANUFACTURER 40percent.club
  22. #define PRODUCT ut47
  23. #define DESCRIPTION An awesome 40% keyboard
  24. /* key matrix size */
  25. #define MATRIX_ROWS 4
  26. #define MATRIX_COLS 12
  27. #define MATRIX_ROW_PINS { D1, D0, D4, C6 }
  28. #define MATRIX_COL_PINS { D7, E6, B4, B5, B6, B2, B3, B1, F7, F6, F5, F4 }
  29. #define UNUSED_PINS
  30. /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
  31. #define DIODE_DIRECTION COL2ROW
  32. // #define BACKLIGHT_PIN B7
  33. // #define BACKLIGHT_BREATHING
  34. // #define BACKLIGHT_LEVELS 3
  35. /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
  36. #define DEBOUNCING_DELAY 5
  37. /* define if matrix has ghost (lacks anti-ghosting diodes) */
  38. //#define MATRIX_HAS_GHOST
  39. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  40. #define LOCKING_SUPPORT_ENABLE
  41. /* Locking resynchronize hack */
  42. #define LOCKING_RESYNC_ENABLE
  43. /* key combination for magic key command */
  44. #define IS_COMMAND() ( \
  45. keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
  46. )
  47. /* Enable GNAP matrix serial output */
  48. #define GNAP_ENABLE
  49. /* USART configuration */
  50. #ifdef __AVR_ATmega32U4__
  51. # define SERIAL_UART_BAUD 9600
  52. # define SERIAL_UART_DATA UDR1
  53. # define SERIAL_UART_UBRR (F_CPU / (16UL * SERIAL_UART_BAUD) - 1)
  54. # define SERIAL_UART_RXD_VECT USART1_RX_vect
  55. # define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1))
  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 */ \
  62. UCSR1B = _BV(TXEN1); \
  63. /* 8-bit data */ \
  64. UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); \
  65. sei(); \
  66. } while(0)
  67. # else
  68. # error "USART configuration is needed."
  69. #endif
  70. #endif