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 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. #include <avr/interrupt.h>
  17. #define VENDOR_ID 0xFEED
  18. #define PRODUCT_ID 0x6512
  19. #define DEVICE_VER 0x0001
  20. #define MANUFACTURER t.m.k.
  21. #define PRODUCT PS/2 keyboard converter
  22. #define DESCRIPTION convert PS/2 keyboard to USB
  23. /* matrix size */
  24. #define MATRIX_ROWS 32 // keycode bit: 3-0
  25. #define MATRIX_COLS 8 // keycode bit: 6-4
  26. /* key combination for command */
  27. #define IS_COMMAND() ( \
  28. keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) || \
  29. keyboard_report->mods == (MOD_BIT(KC_LCTRL) | MOD_BIT(KC_RSHIFT)) \
  30. )
  31. //#define NO_SUSPEND_POWER_DOWN
  32. /*
  33. * PS/2 Busywait
  34. */
  35. #ifdef PS2_USE_BUSYWAIT
  36. #define PS2_CLOCK_PORT PORTD
  37. #define PS2_CLOCK_PIN PIND
  38. #define PS2_CLOCK_DDR DDRD
  39. #define PS2_CLOCK_BIT 5
  40. #define PS2_DATA_PORT PORTD
  41. #define PS2_DATA_PIN PIND
  42. #define PS2_DATA_DDR DDRD
  43. #define PS2_DATA_BIT 2
  44. #endif
  45. /*
  46. * PS/2 Pin interrupt
  47. */
  48. #ifdef PS2_USE_INT
  49. /* uses INT1 for clock line(ATMega32U4) */
  50. #define PS2_CLOCK_PORT PORTD
  51. #define PS2_CLOCK_PIN PIND
  52. #define PS2_CLOCK_DDR DDRD
  53. #define PS2_CLOCK_BIT 1
  54. #define PS2_DATA_PORT PORTD
  55. #define PS2_DATA_PIN PIND
  56. #define PS2_DATA_DDR DDRD
  57. #define PS2_DATA_BIT 2
  58. #define PS2_INT_INIT() do { \
  59. EICRA |= ((1<<ISC11) | \
  60. (0<<ISC10)); \
  61. } while (0)
  62. #define PS2_INT_ON() do { \
  63. EIMSK |= (1<<INT1); \
  64. } while (0)
  65. #define PS2_INT_OFF() do { \
  66. EIMSK &= ~(1<<INT1); \
  67. } while (0)
  68. #define PS2_INT_VECT INT1_vect
  69. #endif
  70. /*
  71. * PS/2 USART
  72. */
  73. #ifdef PS2_USE_USART
  74. #if defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__)
  75. /* XCK for clock line and RXD for data line */
  76. #define PS2_CLOCK_PORT PORTD
  77. #define PS2_CLOCK_PIN PIND
  78. #define PS2_CLOCK_DDR DDRD
  79. #define PS2_CLOCK_BIT 5
  80. #define PS2_DATA_PORT PORTD
  81. #define PS2_DATA_PIN PIND
  82. #define PS2_DATA_DDR DDRD
  83. #define PS2_DATA_BIT 2
  84. /* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */
  85. /* set DDR of CLOCK as input to be slave */
  86. #define PS2_USART_INIT() do { \
  87. PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \
  88. PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \
  89. UCSR1C = ((1 << UMSEL10) | \
  90. (3 << UPM10) | \
  91. (0 << USBS1) | \
  92. (3 << UCSZ10) | \
  93. (0 << UCPOL1)); \
  94. UCSR1A = 0; \
  95. UBRR1H = 0; \
  96. UBRR1L = 0; \
  97. } while (0)
  98. #define PS2_USART_RX_INT_ON() do { \
  99. UCSR1B = ((1 << RXCIE1) | \
  100. (1 << RXEN1)); \
  101. } while (0)
  102. #define PS2_USART_RX_POLL_ON() do { \
  103. UCSR1B = (1 << RXEN1); \
  104. } while (0)
  105. #define PS2_USART_OFF() do { \
  106. UCSR1C = 0; \
  107. UCSR1B &= ~((1 << RXEN1) | \
  108. (1 << TXEN1)); \
  109. } while (0)
  110. #define PS2_USART_RX_READY (UCSR1A & (1<<RXC1))
  111. #define PS2_USART_RX_DATA UDR1
  112. #define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1)))
  113. #define PS2_USART_RX_VECT USART1_RX_vect
  114. #elif defined(__AVR_ATmega168__) || defined(__AVR_ATmega168P__) || defined(__AVR_ATmega328P__)
  115. /* XCK for clock line and RXD for data line */
  116. #define PS2_CLOCK_PORT PORTD
  117. #define PS2_CLOCK_PIN PIND
  118. #define PS2_CLOCK_DDR DDRD
  119. #define PS2_CLOCK_BIT 4
  120. #define PS2_DATA_PORT PORTD
  121. #define PS2_DATA_PIN PIND
  122. #define PS2_DATA_DDR DDRD
  123. #define PS2_DATA_BIT 0
  124. /* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */
  125. /* set DDR of CLOCK as input to be slave */
  126. #define PS2_USART_INIT() do { \
  127. PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \
  128. PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \
  129. UCSR0C = ((1 << UMSEL00) | \
  130. (3 << UPM00) | \
  131. (0 << USBS0) | \
  132. (3 << UCSZ00) | \
  133. (0 << UCPOL0)); \
  134. UCSR0A = 0; \
  135. UBRR0H = 0; \
  136. UBRR0L = 0; \
  137. } while (0)
  138. #define PS2_USART_RX_INT_ON() do { \
  139. UCSR0B = ((1 << RXCIE0) | \
  140. (1 << RXEN0)); \
  141. } while (0)
  142. #define PS2_USART_RX_POLL_ON() do { \
  143. UCSR0B = (1 << RXEN0); \
  144. } while (0)
  145. #define PS2_USART_OFF() do { \
  146. UCSR0C = 0; \
  147. UCSR0B &= ~((1 << RXEN0) | \
  148. (1 << TXEN0)); \
  149. } while (0)
  150. #define PS2_USART_RX_READY (UCSR0A & (1<<RXC0))
  151. #define PS2_USART_RX_DATA UDR0
  152. #define PS2_USART_ERROR (UCSR0A & ((1<<FE0) | (1<<DOR0) | (1<<UPE0)))
  153. #define PS2_USART_RX_VECT USART_RX_vect
  154. #endif
  155. #endif
  156. #endif