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.

79 lines
2.4 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. #pragma once
  15. #include "config_common.h"
  16. /* USB Device descriptor parameter */
  17. #define VENDOR_ID 0xFEED
  18. #define PRODUCT_ID 0x0000
  19. #define DEVICE_VER 0x0001
  20. #define MANUFACTURER 40percent.club
  21. #define PRODUCT ut47
  22. #define DESCRIPTION An awesome 40% keyboard
  23. /* key matrix size */
  24. #define MATRIX_ROWS 4
  25. #define MATRIX_COLS 12
  26. #define MATRIX_ROW_PINS { D1, D0, D4, C6 }
  27. #define MATRIX_COL_PINS { D7, E6, B4, B5, B6, B2, B3, B1, F7, F6, F5, F4 }
  28. #define UNUSED_PINS
  29. /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
  30. #define DIODE_DIRECTION COL2ROW
  31. // #define BACKLIGHT_PIN B7
  32. // #define BACKLIGHT_BREATHING
  33. // #define BACKLIGHT_LEVELS 3
  34. /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
  35. #define DEBOUNCING_DELAY 5
  36. /* define if matrix has ghost (lacks anti-ghosting diodes) */
  37. //#define MATRIX_HAS_GHOST
  38. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  39. #define LOCKING_SUPPORT_ENABLE
  40. /* Locking resynchronize hack */
  41. #define LOCKING_RESYNC_ENABLE
  42. /* Enable GNAP matrix serial output */
  43. #define GNAP_ENABLE
  44. /* USART configuration */
  45. #ifdef __AVR_ATmega32U4__
  46. # define SERIAL_UART_BAUD 9600
  47. # define SERIAL_UART_DATA UDR1
  48. # define SERIAL_UART_UBRR (F_CPU / (16UL * SERIAL_UART_BAUD) - 1)
  49. # define SERIAL_UART_RXD_VECT USART1_RX_vect
  50. # define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1))
  51. # define SERIAL_UART_INIT() do { \
  52. /* baud rate */ \
  53. UBRR1L = SERIAL_UART_UBRR; \
  54. /* baud rate */ \
  55. UBRR1H = SERIAL_UART_UBRR >> 8; \
  56. /* enable TX */ \
  57. UCSR1B = _BV(TXEN1); \
  58. /* 8-bit data */ \
  59. UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); \
  60. sei(); \
  61. } while(0)
  62. # else
  63. # error "USART configuration is needed."
  64. #endif