Keyboard firmwares for Atmel AVR and Cortex-M
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.

config.h 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. Copyright 2012 Jun Wako <[email protected]>
  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. /* USB Device descriptor parameter */
  17. #define VENDOR_ID 0xFEED
  18. #define PRODUCT_ID 0x1111
  19. #define DEVICE_VER 0x0001
  20. #define MANUFACTURER geekhack
  21. #define PRODUCT Onekey
  22. #define DESCRIPTION t.m.k. keyboard firmware for Onekey
  23. /* key matrix size */
  24. #define MATRIX_ROWS 1
  25. #define MATRIX_COLS 1
  26. /* define if matrix has ghost */
  27. //#define MATRIX_HAS_GHOST
  28. /* Set 0 if debouncing isn't needed */
  29. #define DEBOUNCE 5
  30. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  31. #define LOCKING_SUPPORT_ENABLE
  32. /* Locking resynchronize hack */
  33. #define LOCKING_RESYNC_ENABLE
  34. /* key combination for command */
  35. #define IS_COMMAND() ( \
  36. keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
  37. )
  38. /*
  39. * Feature disable options
  40. * These options are also useful to firmware size reduction.
  41. */
  42. /* disable debug print */
  43. //#define NO_DEBUG
  44. /* disable print */
  45. //#define NO_PRINT
  46. /* disable action features */
  47. //#define NO_ACTION_LAYER
  48. //#define NO_ACTION_TAPPING
  49. //#define NO_ACTION_ONESHOT
  50. //#define NO_ACTION_MACRO
  51. //#define NO_ACTION_FUNCTION
  52. /* PS/2 mouse */
  53. #ifdef PS2_USE_BUSYWAIT
  54. # define PS2_CLOCK_PORT PORTD
  55. # define PS2_CLOCK_PIN PIND
  56. # define PS2_CLOCK_DDR DDRD
  57. # define PS2_CLOCK_BIT 1
  58. # define PS2_DATA_PORT PORTD
  59. # define PS2_DATA_PIN PIND
  60. # define PS2_DATA_DDR DDRD
  61. # define PS2_DATA_BIT 2
  62. #endif
  63. /* PS/2 mouse interrupt version */
  64. #ifdef PS2_USE_INT
  65. /* uses INT1 for clock line(ATMega32U4) */
  66. #define PS2_CLOCK_PORT PORTD
  67. #define PS2_CLOCK_PIN PIND
  68. #define PS2_CLOCK_DDR DDRD
  69. #define PS2_CLOCK_BIT 1
  70. #define PS2_DATA_PORT PORTD
  71. #define PS2_DATA_PIN PIND
  72. #define PS2_DATA_DDR DDRD
  73. #define PS2_DATA_BIT 2
  74. #define PS2_INT_INIT() do { \
  75. EICRA |= ((1<<ISC11) | \
  76. (0<<ISC10)); \
  77. } while (0)
  78. #define PS2_INT_ON() do { \
  79. EIMSK |= (1<<INT1); \
  80. } while (0)
  81. #define PS2_INT_OFF() do { \
  82. EIMSK &= ~(1<<INT1); \
  83. } while (0)
  84. #define PS2_INT_VECT INT1_vect
  85. #endif
  86. /* PS/2 mouse USART version */
  87. #ifdef PS2_USE_USART
  88. #if defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__)
  89. /* XCK for clock line and RXD for data line */
  90. #define PS2_CLOCK_PORT PORTD
  91. #define PS2_CLOCK_PIN PIND
  92. #define PS2_CLOCK_DDR DDRD
  93. #define PS2_CLOCK_BIT 5
  94. #define PS2_DATA_PORT PORTD
  95. #define PS2_DATA_PIN PIND
  96. #define PS2_DATA_DDR DDRD
  97. #define PS2_DATA_BIT 2
  98. /* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */
  99. /* set DDR of CLOCK as input to be slave */
  100. #define PS2_USART_INIT() do { \
  101. PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \
  102. PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \
  103. UCSR1C = ((1 << UMSEL10) | \
  104. (3 << UPM10) | \
  105. (0 << USBS1) | \
  106. (3 << UCSZ10) | \
  107. (0 << UCPOL1)); \
  108. UCSR1A = 0; \
  109. UBRR1H = 0; \
  110. UBRR1L = 0; \
  111. } while (0)
  112. #define PS2_USART_RX_INT_ON() do { \
  113. UCSR1B = ((1 << RXCIE1) | \
  114. (1 << RXEN1)); \
  115. } while (0)
  116. #define PS2_USART_RX_POLL_ON() do { \
  117. UCSR1B = (1 << RXEN1); \
  118. } while (0)
  119. #define PS2_USART_OFF() do { \
  120. UCSR1C = 0; \
  121. UCSR1B &= ~((1 << RXEN1) | \
  122. (1 << TXEN1)); \
  123. } while (0)
  124. #define PS2_USART_RX_READY (UCSR1A & (1<<RXC1))
  125. #define PS2_USART_RX_DATA UDR1
  126. #define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1)))
  127. #define PS2_USART_RX_VECT USART1_RX_vect
  128. #endif
  129. #endif
  130. #endif